mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-02-18 23:06:40 -05:00
1723 lines
48 KiB
TypeScript
1723 lines
48 KiB
TypeScript
export type Json =
|
|
| string
|
|
| number
|
|
| boolean
|
|
| null
|
|
| { [key: string]: Json | undefined }
|
|
| Json[]
|
|
|
|
export type Database = {
|
|
// Allows to automatically instantiate createClient with right options
|
|
// instead of createClient<Database, { PostgrestVersion: 'XX' }>(URL, KEY)
|
|
__InternalSupabase: {
|
|
PostgrestVersion: '13.0.4'
|
|
}
|
|
public: {
|
|
Tables: {
|
|
bookmarked_searches: {
|
|
Row: {
|
|
created_time: string
|
|
creator_id: string
|
|
id: number
|
|
last_notified_at: string | null
|
|
location: Json | null
|
|
search_filters: Json | null
|
|
search_name: string | null
|
|
}
|
|
Insert: {
|
|
created_time?: string
|
|
creator_id: string
|
|
id?: never
|
|
last_notified_at?: string | null
|
|
location?: Json | null
|
|
search_filters?: Json | null
|
|
search_name?: string | null
|
|
}
|
|
Update: {
|
|
created_time?: string
|
|
creator_id?: string
|
|
id?: never
|
|
last_notified_at?: string | null
|
|
location?: Json | null
|
|
search_filters?: Json | null
|
|
search_name?: string | null
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'bookmarked_searches_creator_id_fkey'
|
|
columns: ['creator_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
causes: {
|
|
Row: {
|
|
creator_id: string | null
|
|
id: number
|
|
name: string
|
|
}
|
|
Insert: {
|
|
creator_id?: string | null
|
|
id?: never
|
|
name: string
|
|
}
|
|
Update: {
|
|
creator_id?: string | null
|
|
id?: never
|
|
name?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'causes_creator_id_fkey'
|
|
columns: ['creator_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
causes_translations: {
|
|
Row: {
|
|
locale: string
|
|
name: string
|
|
option_id: number
|
|
}
|
|
Insert: {
|
|
locale: string
|
|
name: string
|
|
option_id: number
|
|
}
|
|
Update: {
|
|
locale?: string
|
|
name?: string
|
|
option_id?: number
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'causes_translations_option_id_fkey'
|
|
columns: ['option_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'causes'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
compatibility_answers: {
|
|
Row: {
|
|
created_time: string
|
|
creator_id: string
|
|
explanation: string | null
|
|
id: number
|
|
importance: number
|
|
multiple_choice: number
|
|
pref_choices: number[]
|
|
question_id: number
|
|
}
|
|
Insert: {
|
|
created_time?: string
|
|
creator_id: string
|
|
explanation?: string | null
|
|
id?: number
|
|
importance: number
|
|
multiple_choice: number
|
|
pref_choices: number[]
|
|
question_id: number
|
|
}
|
|
Update: {
|
|
created_time?: string
|
|
creator_id?: string
|
|
explanation?: string | null
|
|
id?: number
|
|
importance?: number
|
|
multiple_choice?: number
|
|
pref_choices?: number[]
|
|
question_id?: number
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'compatibility_answers_creator_id_fkey'
|
|
columns: ['creator_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
compatibility_answers_free: {
|
|
Row: {
|
|
created_time: string
|
|
creator_id: string
|
|
free_response: string | null
|
|
id: number
|
|
integer: number | null
|
|
multiple_choice: number | null
|
|
question_id: number
|
|
}
|
|
Insert: {
|
|
created_time?: string
|
|
creator_id: string
|
|
free_response?: string | null
|
|
id?: number
|
|
integer?: number | null
|
|
multiple_choice?: number | null
|
|
question_id: number
|
|
}
|
|
Update: {
|
|
created_time?: string
|
|
creator_id?: string
|
|
free_response?: string | null
|
|
id?: number
|
|
integer?: number | null
|
|
multiple_choice?: number | null
|
|
question_id?: number
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'compatibility_answers_free_creator_id_fkey'
|
|
columns: ['creator_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
compatibility_prompts: {
|
|
Row: {
|
|
answer_type: string
|
|
category: string | null
|
|
created_time: string
|
|
creator_id: string | null
|
|
id: number
|
|
importance_score: number
|
|
multiple_choice_options: Json | null
|
|
question: string
|
|
}
|
|
Insert: {
|
|
answer_type?: string
|
|
category?: string | null
|
|
created_time?: string
|
|
creator_id?: string | null
|
|
id?: number
|
|
importance_score?: number
|
|
multiple_choice_options?: Json | null
|
|
question: string
|
|
}
|
|
Update: {
|
|
answer_type?: string
|
|
category?: string | null
|
|
created_time?: string
|
|
creator_id?: string | null
|
|
id?: number
|
|
importance_score?: number
|
|
multiple_choice_options?: Json | null
|
|
question?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'compatibility_prompts_creator_id_fkey'
|
|
columns: ['creator_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
compatibility_prompts_translations: {
|
|
Row: {
|
|
locale: string
|
|
multiple_choice_options: Json | null
|
|
question: string
|
|
question_id: number
|
|
updated_at: string
|
|
}
|
|
Insert: {
|
|
locale: string
|
|
multiple_choice_options?: Json | null
|
|
question: string
|
|
question_id: number
|
|
updated_at?: string
|
|
}
|
|
Update: {
|
|
locale?: string
|
|
multiple_choice_options?: Json | null
|
|
question?: string
|
|
question_id?: number
|
|
updated_at?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'fk_question'
|
|
columns: ['question_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'compatibility_prompts'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
compatibility_scores: {
|
|
Row: {
|
|
created_time: string
|
|
id: number
|
|
modified_time: string
|
|
score: number | null
|
|
user_id_1: string
|
|
user_id_2: string
|
|
}
|
|
Insert: {
|
|
created_time?: string
|
|
id?: never
|
|
modified_time?: string
|
|
score?: number | null
|
|
user_id_1: string
|
|
user_id_2: string
|
|
}
|
|
Update: {
|
|
created_time?: string
|
|
id?: never
|
|
modified_time?: string
|
|
score?: number | null
|
|
user_id_1?: string
|
|
user_id_2?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'compatibility_scores_user_id_1_fkey'
|
|
columns: ['user_id_1']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
{
|
|
foreignKeyName: 'compatibility_scores_user_id_2_fkey'
|
|
columns: ['user_id_2']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
contact: {
|
|
Row: {
|
|
content: Json | null
|
|
created_time: string | null
|
|
id: string
|
|
user_id: string | null
|
|
}
|
|
Insert: {
|
|
content?: Json | null
|
|
created_time?: string | null
|
|
id?: string
|
|
user_id?: string | null
|
|
}
|
|
Update: {
|
|
content?: Json | null
|
|
created_time?: string | null
|
|
id?: string
|
|
user_id?: string | null
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'contact_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
events: {
|
|
Row: {
|
|
created_time: string
|
|
creator_id: string | null
|
|
description: string | null
|
|
event_end_time: string | null
|
|
event_start_time: string
|
|
id: string
|
|
is_public: boolean
|
|
location_address: string | null
|
|
location_type: string
|
|
location_url: string | null
|
|
max_participants: number | null
|
|
status: string
|
|
title: string
|
|
}
|
|
Insert: {
|
|
created_time?: string
|
|
creator_id?: string | null
|
|
description?: string | null
|
|
event_end_time?: string | null
|
|
event_start_time: string
|
|
id?: string
|
|
is_public?: boolean
|
|
location_address?: string | null
|
|
location_type: string
|
|
location_url?: string | null
|
|
max_participants?: number | null
|
|
status?: string
|
|
title: string
|
|
}
|
|
Update: {
|
|
created_time?: string
|
|
creator_id?: string | null
|
|
description?: string | null
|
|
event_end_time?: string | null
|
|
event_start_time?: string
|
|
id?: string
|
|
is_public?: boolean
|
|
location_address?: string | null
|
|
location_type?: string
|
|
location_url?: string | null
|
|
max_participants?: number | null
|
|
status?: string
|
|
title?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'events_creator_id_fkey'
|
|
columns: ['creator_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
events_participants: {
|
|
Row: {
|
|
event_id: string
|
|
id: string
|
|
rsvp_time: string
|
|
status: string
|
|
user_id: string
|
|
}
|
|
Insert: {
|
|
event_id: string
|
|
id?: string
|
|
rsvp_time?: string
|
|
status?: string
|
|
user_id: string
|
|
}
|
|
Update: {
|
|
event_id?: string
|
|
id?: string
|
|
rsvp_time?: string
|
|
status?: string
|
|
user_id?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'events_participants_event_id_fkey'
|
|
columns: ['event_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'events'
|
|
referencedColumns: ['id']
|
|
},
|
|
{
|
|
foreignKeyName: 'events_participants_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
hidden_profiles: {
|
|
Row: {
|
|
created_time: string
|
|
hidden_user_id: string
|
|
hider_user_id: string
|
|
id: number
|
|
}
|
|
Insert: {
|
|
created_time?: string
|
|
hidden_user_id: string
|
|
hider_user_id: string
|
|
id?: never
|
|
}
|
|
Update: {
|
|
created_time?: string
|
|
hidden_user_id?: string
|
|
hider_user_id?: string
|
|
id?: never
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'fk_hidden_profiles_hidden'
|
|
columns: ['hidden_user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
{
|
|
foreignKeyName: 'fk_hidden_profiles_hider'
|
|
columns: ['hider_user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
interests: {
|
|
Row: {
|
|
creator_id: string | null
|
|
id: number
|
|
name: string
|
|
}
|
|
Insert: {
|
|
creator_id?: string | null
|
|
id?: never
|
|
name: string
|
|
}
|
|
Update: {
|
|
creator_id?: string | null
|
|
id?: never
|
|
name?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'interests_creator_id_fkey'
|
|
columns: ['creator_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
interests_translations: {
|
|
Row: {
|
|
locale: string
|
|
name: string
|
|
option_id: number
|
|
}
|
|
Insert: {
|
|
locale: string
|
|
name: string
|
|
option_id: number
|
|
}
|
|
Update: {
|
|
locale?: string
|
|
name?: string
|
|
option_id?: number
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'interests_translations_option_id_fkey'
|
|
columns: ['option_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'interests'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
private_user_message_channel_members: {
|
|
Row: {
|
|
channel_id: number
|
|
created_time: string
|
|
id: number
|
|
notify_after_time: string
|
|
role: string
|
|
status: string
|
|
user_id: string
|
|
}
|
|
Insert: {
|
|
channel_id: number
|
|
created_time?: string
|
|
id?: never
|
|
notify_after_time?: string
|
|
role?: string
|
|
status?: string
|
|
user_id: string
|
|
}
|
|
Update: {
|
|
channel_id?: number
|
|
created_time?: string
|
|
id?: never
|
|
notify_after_time?: string
|
|
role?: string
|
|
status?: string
|
|
user_id?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'channel_id_fkey'
|
|
columns: ['channel_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'private_user_message_channels'
|
|
referencedColumns: ['id']
|
|
},
|
|
{
|
|
foreignKeyName: 'private_user_message_channel_members_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
private_user_message_channels: {
|
|
Row: {
|
|
created_time: string
|
|
id: number
|
|
last_updated_time: string
|
|
title: string | null
|
|
}
|
|
Insert: {
|
|
created_time?: string
|
|
id?: number
|
|
last_updated_time?: string
|
|
title?: string | null
|
|
}
|
|
Update: {
|
|
created_time?: string
|
|
id?: number
|
|
last_updated_time?: string
|
|
title?: string | null
|
|
}
|
|
Relationships: []
|
|
}
|
|
private_user_messages: {
|
|
Row: {
|
|
channel_id: number
|
|
ciphertext: string | null
|
|
content: Json | null
|
|
created_time: string
|
|
deleted: boolean | null
|
|
edited_at: string | null
|
|
id: number
|
|
is_edited: boolean | null
|
|
iv: string | null
|
|
reactions: Json | null
|
|
tag: string | null
|
|
user_id: string | null
|
|
visibility: string
|
|
}
|
|
Insert: {
|
|
channel_id: number
|
|
ciphertext?: string | null
|
|
content?: Json | null
|
|
created_time?: string
|
|
deleted?: boolean | null
|
|
edited_at?: string | null
|
|
id?: never
|
|
is_edited?: boolean | null
|
|
iv?: string | null
|
|
reactions?: Json | null
|
|
tag?: string | null
|
|
user_id?: string | null
|
|
visibility?: string
|
|
}
|
|
Update: {
|
|
channel_id?: number
|
|
ciphertext?: string | null
|
|
content?: Json | null
|
|
created_time?: string
|
|
deleted?: boolean | null
|
|
edited_at?: string | null
|
|
id?: never
|
|
is_edited?: boolean | null
|
|
iv?: string | null
|
|
reactions?: Json | null
|
|
tag?: string | null
|
|
user_id?: string | null
|
|
visibility?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'private_user_messages_channel_id_fkey'
|
|
columns: ['channel_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'private_user_message_channels'
|
|
referencedColumns: ['id']
|
|
},
|
|
{
|
|
foreignKeyName: 'private_user_messages_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
private_user_seen_message_channels: {
|
|
Row: {
|
|
channel_id: number
|
|
created_time: string
|
|
id: number
|
|
user_id: string
|
|
}
|
|
Insert: {
|
|
channel_id: number
|
|
created_time?: string
|
|
id?: never
|
|
user_id: string
|
|
}
|
|
Update: {
|
|
channel_id?: number
|
|
created_time?: string
|
|
id?: never
|
|
user_id?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'channel_id_fkey'
|
|
columns: ['channel_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'private_user_message_channels'
|
|
referencedColumns: ['id']
|
|
},
|
|
{
|
|
foreignKeyName: 'private_user_seen_message_channels_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
private_users: {
|
|
Row: {
|
|
data: Json
|
|
id: string
|
|
}
|
|
Insert: {
|
|
data: Json
|
|
id: string
|
|
}
|
|
Update: {
|
|
data?: Json
|
|
id?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'private_users_id_fkey'
|
|
columns: ['id']
|
|
isOneToOne: true
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
profile_causes: {
|
|
Row: {
|
|
id: number
|
|
option_id: number
|
|
profile_id: number
|
|
}
|
|
Insert: {
|
|
id?: never
|
|
option_id: number
|
|
profile_id: number
|
|
}
|
|
Update: {
|
|
id?: never
|
|
option_id?: number
|
|
profile_id?: number
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'profile_causes_option_id_fkey'
|
|
columns: ['option_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'causes'
|
|
referencedColumns: ['id']
|
|
},
|
|
{
|
|
foreignKeyName: 'profile_causes_profile_id_fkey'
|
|
columns: ['profile_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'profiles'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
profile_comments: {
|
|
Row: {
|
|
content: Json
|
|
created_time: string
|
|
hidden: boolean
|
|
id: number
|
|
on_user_id: string
|
|
reply_to_comment_id: number | null
|
|
user_avatar_url: string
|
|
user_id: string
|
|
user_name: string
|
|
user_username: string
|
|
}
|
|
Insert: {
|
|
content: Json
|
|
created_time?: string
|
|
hidden?: boolean
|
|
id?: number
|
|
on_user_id: string
|
|
reply_to_comment_id?: number | null
|
|
user_avatar_url: string
|
|
user_id: string
|
|
user_name: string
|
|
user_username: string
|
|
}
|
|
Update: {
|
|
content?: Json
|
|
created_time?: string
|
|
hidden?: boolean
|
|
id?: number
|
|
on_user_id?: string
|
|
reply_to_comment_id?: number | null
|
|
user_avatar_url?: string
|
|
user_id?: string
|
|
user_name?: string
|
|
user_username?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'profile_comments_on_user_id_fkey'
|
|
columns: ['on_user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
{
|
|
foreignKeyName: 'profile_comments_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
profile_interests: {
|
|
Row: {
|
|
id: number
|
|
option_id: number
|
|
profile_id: number
|
|
}
|
|
Insert: {
|
|
id?: never
|
|
option_id: number
|
|
profile_id: number
|
|
}
|
|
Update: {
|
|
id?: never
|
|
option_id?: number
|
|
profile_id?: number
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'profile_interests_option_id_fkey'
|
|
columns: ['option_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'interests'
|
|
referencedColumns: ['id']
|
|
},
|
|
{
|
|
foreignKeyName: 'profile_interests_profile_id_fkey'
|
|
columns: ['profile_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'profiles'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
profile_likes: {
|
|
Row: {
|
|
created_time: string
|
|
creator_id: string
|
|
like_id: string
|
|
target_id: string
|
|
}
|
|
Insert: {
|
|
created_time?: string
|
|
creator_id: string
|
|
like_id?: string
|
|
target_id: string
|
|
}
|
|
Update: {
|
|
created_time?: string
|
|
creator_id?: string
|
|
like_id?: string
|
|
target_id?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'profile_likes_creator_id_fkey'
|
|
columns: ['creator_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
profile_ships: {
|
|
Row: {
|
|
created_time: string
|
|
creator_id: string
|
|
ship_id: string
|
|
target1_id: string
|
|
target2_id: string
|
|
}
|
|
Insert: {
|
|
created_time?: string
|
|
creator_id: string
|
|
ship_id?: string
|
|
target1_id: string
|
|
target2_id: string
|
|
}
|
|
Update: {
|
|
created_time?: string
|
|
creator_id?: string
|
|
ship_id?: string
|
|
target1_id?: string
|
|
target2_id?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'profile_ships_creator_id_fkey'
|
|
columns: ['creator_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
profile_stars: {
|
|
Row: {
|
|
created_time: string
|
|
creator_id: string
|
|
star_id: string
|
|
target_id: string
|
|
}
|
|
Insert: {
|
|
created_time?: string
|
|
creator_id: string
|
|
star_id?: string
|
|
target_id: string
|
|
}
|
|
Update: {
|
|
created_time?: string
|
|
creator_id?: string
|
|
star_id?: string
|
|
target_id?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'profile_stars_creator_id_fkey'
|
|
columns: ['creator_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
{
|
|
foreignKeyName: 'profile_stars_target_id_fkey'
|
|
columns: ['target_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
profile_work: {
|
|
Row: {
|
|
id: number
|
|
option_id: number
|
|
profile_id: number
|
|
}
|
|
Insert: {
|
|
id?: never
|
|
option_id: number
|
|
profile_id: number
|
|
}
|
|
Update: {
|
|
id?: never
|
|
option_id?: number
|
|
profile_id?: number
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'profile_work_option_id_fkey'
|
|
columns: ['option_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'work'
|
|
referencedColumns: ['id']
|
|
},
|
|
{
|
|
foreignKeyName: 'profile_work_profile_id_fkey'
|
|
columns: ['profile_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'profiles'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
profiles: {
|
|
Row: {
|
|
age: number | null
|
|
big5_agreeableness: number | null
|
|
big5_conscientiousness: number | null
|
|
big5_extraversion: number | null
|
|
big5_neuroticism: number | null
|
|
big5_openness: number | null
|
|
bio: Json | null
|
|
bio_length: number | null
|
|
bio_text: string | null
|
|
bio_tsv: unknown
|
|
born_in_location: string | null
|
|
city: string | null
|
|
city_latitude: number | null
|
|
city_longitude: number | null
|
|
comments_enabled: boolean
|
|
company: string | null
|
|
country: string | null
|
|
created_time: string
|
|
diet: string[] | null
|
|
disabled: boolean
|
|
drinks_per_month: number | null
|
|
education_level: string | null
|
|
ethnicity: string[] | null
|
|
gender: string | null
|
|
geodb_city_id: string | null
|
|
has_kids: number | null
|
|
height_in_inches: number | null
|
|
id: number
|
|
image_descriptions: Json | null
|
|
is_smoker: boolean | null
|
|
languages: string[] | null
|
|
last_modification_time: string
|
|
looking_for_matches: boolean
|
|
mbti: string | null
|
|
messaging_status: string
|
|
occupation: string | null
|
|
occupation_title: string | null
|
|
photo_urls: string[] | null
|
|
pinned_url: string | null
|
|
political_beliefs: string[] | null
|
|
political_details: string | null
|
|
pref_age_max: number | null
|
|
pref_age_min: number | null
|
|
pref_gender: string[] | null
|
|
pref_relation_styles: string[] | null
|
|
pref_romantic_styles: string[] | null
|
|
referred_by_username: string | null
|
|
region_code: string | null
|
|
relationship_status: string[] | null
|
|
religion: string[] | null
|
|
religious_belief_strength: number | null
|
|
religious_beliefs: string | null
|
|
search_text: string | null
|
|
search_tsv: unknown
|
|
twitter: string | null
|
|
university: string | null
|
|
user_id: string
|
|
visibility: Database['public']['Enums']['lover_visibility']
|
|
wants_kids_strength: number | null
|
|
website: string | null
|
|
}
|
|
Insert: {
|
|
age?: number | null
|
|
big5_agreeableness?: number | null
|
|
big5_conscientiousness?: number | null
|
|
big5_extraversion?: number | null
|
|
big5_neuroticism?: number | null
|
|
big5_openness?: number | null
|
|
bio?: Json | null
|
|
bio_length?: number | null
|
|
bio_text?: string | null
|
|
bio_tsv?: unknown
|
|
born_in_location?: string | null
|
|
city?: string | null
|
|
city_latitude?: number | null
|
|
city_longitude?: number | null
|
|
comments_enabled?: boolean
|
|
company?: string | null
|
|
country?: string | null
|
|
created_time?: string
|
|
diet?: string[] | null
|
|
disabled?: boolean
|
|
drinks_per_month?: number | null
|
|
education_level?: string | null
|
|
ethnicity?: string[] | null
|
|
gender?: string | null
|
|
geodb_city_id?: string | null
|
|
has_kids?: number | null
|
|
height_in_inches?: number | null
|
|
id?: number
|
|
image_descriptions?: Json | null
|
|
is_smoker?: boolean | null
|
|
languages?: string[] | null
|
|
last_modification_time?: string
|
|
looking_for_matches?: boolean
|
|
mbti?: string | null
|
|
messaging_status?: string
|
|
occupation?: string | null
|
|
occupation_title?: string | null
|
|
photo_urls?: string[] | null
|
|
pinned_url?: string | null
|
|
political_beliefs?: string[] | null
|
|
political_details?: string | null
|
|
pref_age_max?: number | null
|
|
pref_age_min?: number | null
|
|
pref_gender?: string[] | null
|
|
pref_relation_styles?: string[] | null
|
|
pref_romantic_styles?: string[] | null
|
|
referred_by_username?: string | null
|
|
region_code?: string | null
|
|
relationship_status?: string[] | null
|
|
religion?: string[] | null
|
|
religious_belief_strength?: number | null
|
|
religious_beliefs?: string | null
|
|
search_text?: string | null
|
|
search_tsv?: unknown
|
|
twitter?: string | null
|
|
university?: string | null
|
|
user_id: string
|
|
visibility?: Database['public']['Enums']['lover_visibility']
|
|
wants_kids_strength?: number | null
|
|
website?: string | null
|
|
}
|
|
Update: {
|
|
age?: number | null
|
|
big5_agreeableness?: number | null
|
|
big5_conscientiousness?: number | null
|
|
big5_extraversion?: number | null
|
|
big5_neuroticism?: number | null
|
|
big5_openness?: number | null
|
|
bio?: Json | null
|
|
bio_length?: number | null
|
|
bio_text?: string | null
|
|
bio_tsv?: unknown
|
|
born_in_location?: string | null
|
|
city?: string | null
|
|
city_latitude?: number | null
|
|
city_longitude?: number | null
|
|
comments_enabled?: boolean
|
|
company?: string | null
|
|
country?: string | null
|
|
created_time?: string
|
|
diet?: string[] | null
|
|
disabled?: boolean
|
|
drinks_per_month?: number | null
|
|
education_level?: string | null
|
|
ethnicity?: string[] | null
|
|
gender?: string | null
|
|
geodb_city_id?: string | null
|
|
has_kids?: number | null
|
|
height_in_inches?: number | null
|
|
id?: number
|
|
image_descriptions?: Json | null
|
|
is_smoker?: boolean | null
|
|
languages?: string[] | null
|
|
last_modification_time?: string
|
|
looking_for_matches?: boolean
|
|
mbti?: string | null
|
|
messaging_status?: string
|
|
occupation?: string | null
|
|
occupation_title?: string | null
|
|
photo_urls?: string[] | null
|
|
pinned_url?: string | null
|
|
political_beliefs?: string[] | null
|
|
political_details?: string | null
|
|
pref_age_max?: number | null
|
|
pref_age_min?: number | null
|
|
pref_gender?: string[] | null
|
|
pref_relation_styles?: string[] | null
|
|
pref_romantic_styles?: string[] | null
|
|
referred_by_username?: string | null
|
|
region_code?: string | null
|
|
relationship_status?: string[] | null
|
|
religion?: string[] | null
|
|
religious_belief_strength?: number | null
|
|
religious_beliefs?: string | null
|
|
search_text?: string | null
|
|
search_tsv?: unknown
|
|
twitter?: string | null
|
|
university?: string | null
|
|
user_id?: string
|
|
visibility?: Database['public']['Enums']['lover_visibility']
|
|
wants_kids_strength?: number | null
|
|
website?: string | null
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'profiles_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
push_subscriptions: {
|
|
Row: {
|
|
created_at: string | null
|
|
endpoint: string
|
|
id: number
|
|
keys: Json
|
|
user_id: string | null
|
|
}
|
|
Insert: {
|
|
created_at?: string | null
|
|
endpoint: string
|
|
id?: number
|
|
keys: Json
|
|
user_id?: string | null
|
|
}
|
|
Update: {
|
|
created_at?: string | null
|
|
endpoint?: string
|
|
id?: number
|
|
keys?: Json
|
|
user_id?: string | null
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'push_subscriptions_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
push_subscriptions_mobile: {
|
|
Row: {
|
|
created_at: string | null
|
|
id: number
|
|
platform: string
|
|
token: string
|
|
user_id: string
|
|
}
|
|
Insert: {
|
|
created_at?: string | null
|
|
id?: number
|
|
platform: string
|
|
token: string
|
|
user_id: string
|
|
}
|
|
Update: {
|
|
created_at?: string | null
|
|
id?: number
|
|
platform?: string
|
|
token?: string
|
|
user_id?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'push_subscriptions_mobile_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
reports: {
|
|
Row: {
|
|
content_id: string
|
|
content_owner_id: string
|
|
content_type: string
|
|
created_time: string | null
|
|
description: string | null
|
|
id: string
|
|
parent_id: string | null
|
|
parent_type: string | null
|
|
user_id: string | null
|
|
}
|
|
Insert: {
|
|
content_id: string
|
|
content_owner_id: string
|
|
content_type: string
|
|
created_time?: string | null
|
|
description?: string | null
|
|
id?: string
|
|
parent_id?: string | null
|
|
parent_type?: string | null
|
|
user_id?: string | null
|
|
}
|
|
Update: {
|
|
content_id?: string
|
|
content_owner_id?: string
|
|
content_type?: string
|
|
created_time?: string | null
|
|
description?: string | null
|
|
id?: string
|
|
parent_id?: string | null
|
|
parent_type?: string | null
|
|
user_id?: string | null
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'reports_content_owner_id_fkey'
|
|
columns: ['content_owner_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
{
|
|
foreignKeyName: 'reports_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
user_activity: {
|
|
Row: {
|
|
last_online_time: string
|
|
user_id: string
|
|
}
|
|
Insert: {
|
|
last_online_time: string
|
|
user_id: string
|
|
}
|
|
Update: {
|
|
last_online_time?: string
|
|
user_id?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'user_activity_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: true
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
user_events: {
|
|
Row: {
|
|
ad_id: string | null
|
|
comment_id: string | null
|
|
contract_id: string | null
|
|
data: Json
|
|
id: number
|
|
name: string
|
|
ts: string
|
|
user_id: string | null
|
|
}
|
|
Insert: {
|
|
ad_id?: string | null
|
|
comment_id?: string | null
|
|
contract_id?: string | null
|
|
data: Json
|
|
id?: never
|
|
name: string
|
|
ts?: string
|
|
user_id?: string | null
|
|
}
|
|
Update: {
|
|
ad_id?: string | null
|
|
comment_id?: string | null
|
|
contract_id?: string | null
|
|
data?: Json
|
|
id?: never
|
|
name?: string
|
|
ts?: string
|
|
user_id?: string | null
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'user_events_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
user_notifications: {
|
|
Row: {
|
|
data: Json
|
|
notification_id: string
|
|
user_id: string
|
|
}
|
|
Insert: {
|
|
data: Json
|
|
notification_id: string
|
|
user_id: string
|
|
}
|
|
Update: {
|
|
data?: Json
|
|
notification_id?: string
|
|
user_id?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'user_notifications_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
user_waitlist: {
|
|
Row: {
|
|
created_time: string
|
|
email: string
|
|
id: number
|
|
}
|
|
Insert: {
|
|
created_time?: string
|
|
email: string
|
|
id?: number
|
|
}
|
|
Update: {
|
|
created_time?: string
|
|
email?: string
|
|
id?: number
|
|
}
|
|
Relationships: []
|
|
}
|
|
users: {
|
|
Row: {
|
|
created_time: string
|
|
data: Json
|
|
id: string
|
|
name: string
|
|
name_username_vector: unknown
|
|
username: string
|
|
}
|
|
Insert: {
|
|
created_time?: string
|
|
data: Json
|
|
id?: string
|
|
name: string
|
|
name_username_vector?: unknown
|
|
username: string
|
|
}
|
|
Update: {
|
|
created_time?: string
|
|
data?: Json
|
|
id?: string
|
|
name?: string
|
|
name_username_vector?: unknown
|
|
username?: string
|
|
}
|
|
Relationships: []
|
|
}
|
|
vote_results: {
|
|
Row: {
|
|
choice: number
|
|
created_time: string
|
|
id: number
|
|
priority: number
|
|
user_id: string
|
|
vote_id: number
|
|
}
|
|
Insert: {
|
|
choice: number
|
|
created_time?: string
|
|
id?: never
|
|
priority: number
|
|
user_id: string
|
|
vote_id: number
|
|
}
|
|
Update: {
|
|
choice?: number
|
|
created_time?: string
|
|
id?: never
|
|
priority?: number
|
|
user_id?: string
|
|
vote_id?: number
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'vote_results_user_id_fkey'
|
|
columns: ['user_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
{
|
|
foreignKeyName: 'vote_results_vote_id_fkey'
|
|
columns: ['vote_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'votes'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
votes: {
|
|
Row: {
|
|
created_time: string
|
|
creator_id: string
|
|
description: Json | null
|
|
id: number
|
|
is_anonymous: boolean | null
|
|
status: string | null
|
|
title: string
|
|
}
|
|
Insert: {
|
|
created_time?: string
|
|
creator_id: string
|
|
description?: Json | null
|
|
id?: never
|
|
is_anonymous?: boolean | null
|
|
status?: string | null
|
|
title: string
|
|
}
|
|
Update: {
|
|
created_time?: string
|
|
creator_id?: string
|
|
description?: Json | null
|
|
id?: never
|
|
is_anonymous?: boolean | null
|
|
status?: string | null
|
|
title?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'votes_creator_id_fkey'
|
|
columns: ['creator_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
work: {
|
|
Row: {
|
|
creator_id: string | null
|
|
id: number
|
|
name: string
|
|
}
|
|
Insert: {
|
|
creator_id?: string | null
|
|
id?: never
|
|
name: string
|
|
}
|
|
Update: {
|
|
creator_id?: string | null
|
|
id?: never
|
|
name?: string
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'work_creator_id_fkey'
|
|
columns: ['creator_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'users'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
work_translations: {
|
|
Row: {
|
|
locale: string
|
|
name: string
|
|
option_id: number
|
|
}
|
|
Insert: {
|
|
locale: string
|
|
name: string
|
|
option_id: number
|
|
}
|
|
Update: {
|
|
locale?: string
|
|
name?: string
|
|
option_id?: number
|
|
}
|
|
Relationships: [
|
|
{
|
|
foreignKeyName: 'work_translations_option_id_fkey'
|
|
columns: ['option_id']
|
|
isOneToOne: false
|
|
referencedRelation: 'work'
|
|
referencedColumns: ['id']
|
|
},
|
|
]
|
|
}
|
|
}
|
|
Views: {
|
|
[_ in never]: never
|
|
}
|
|
Functions: {
|
|
calculate_earth_distance_km: {
|
|
Args: { lat1: number; lat2: number; lon1: number; lon2: number }
|
|
Returns: number
|
|
}
|
|
can_access_private_messages: {
|
|
Args: { channel_id: number; user_id: string }
|
|
Returns: boolean
|
|
}
|
|
firebase_uid: { Args: never; Returns: string }
|
|
get_average_rating: { Args: { user_id: string }; Returns: number }
|
|
get_compatibility_questions_with_answer_count: {
|
|
Args: never
|
|
Returns: Record<string, unknown>[]
|
|
}
|
|
get_love_question_answers_and_lovers: {
|
|
Args: { p_question_id: number }
|
|
Returns: Record<string, unknown>[]
|
|
}
|
|
get_love_question_answers_and_profiles: {
|
|
Args: { p_question_id: number }
|
|
Returns: Record<string, unknown>[]
|
|
}
|
|
get_votes_with_results: {
|
|
Args: { order_by?: string }
|
|
Returns: {
|
|
created_time: string
|
|
creator_id: string
|
|
description: Json
|
|
id: number
|
|
is_anonymous: boolean
|
|
priority: number
|
|
status: string
|
|
title: string
|
|
votes_abstain: number
|
|
votes_against: number
|
|
votes_for: number
|
|
}[]
|
|
}
|
|
is_admin:
|
|
| { Args: never; Returns: boolean }
|
|
| { Args: { user_id: string }; Returns: boolean }
|
|
millis_interval: {
|
|
Args: { end_millis: number; start_millis: number }
|
|
Returns: unknown
|
|
}
|
|
millis_to_ts: { Args: { millis: number }; Returns: string }
|
|
random_alphanumeric: { Args: { length: number }; Returns: string }
|
|
rebuild_profile_search: {
|
|
Args: { profile_id_param: number }
|
|
Returns: undefined
|
|
}
|
|
show_limit: { Args: never; Returns: number }
|
|
show_trgm: { Args: { '': string }; Returns: string[] }
|
|
to_jsonb: { Args: { '': Json }; Returns: Json }
|
|
}
|
|
Enums: {
|
|
lover_visibility: 'public' | 'member'
|
|
}
|
|
CompositeTypes: {
|
|
[_ in never]: never
|
|
}
|
|
}
|
|
}
|
|
|
|
type DatabaseWithoutInternals = Omit<Database, '__InternalSupabase'>
|
|
|
|
type DefaultSchema = DatabaseWithoutInternals[Extract<keyof Database, 'public'>]
|
|
|
|
export type Tables<
|
|
DefaultSchemaTableNameOrOptions extends
|
|
| keyof (DefaultSchema['Tables'] & DefaultSchema['Views'])
|
|
| { schema: keyof DatabaseWithoutInternals },
|
|
TableName extends DefaultSchemaTableNameOrOptions extends {
|
|
schema: keyof DatabaseWithoutInternals
|
|
}
|
|
? keyof (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Tables'] &
|
|
DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Views'])
|
|
: never = never,
|
|
> = DefaultSchemaTableNameOrOptions extends {
|
|
schema: keyof DatabaseWithoutInternals
|
|
}
|
|
? (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Tables'] &
|
|
DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Views'])[TableName] extends {
|
|
Row: infer R
|
|
}
|
|
? R
|
|
: never
|
|
: DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema['Tables'] &
|
|
DefaultSchema['Views'])
|
|
? (DefaultSchema['Tables'] &
|
|
DefaultSchema['Views'])[DefaultSchemaTableNameOrOptions] extends {
|
|
Row: infer R
|
|
}
|
|
? R
|
|
: never
|
|
: never
|
|
|
|
export type TablesInsert<
|
|
DefaultSchemaTableNameOrOptions extends
|
|
| keyof DefaultSchema['Tables']
|
|
| { schema: keyof DatabaseWithoutInternals },
|
|
TableName extends DefaultSchemaTableNameOrOptions extends {
|
|
schema: keyof DatabaseWithoutInternals
|
|
}
|
|
? keyof DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Tables']
|
|
: never = never,
|
|
> = DefaultSchemaTableNameOrOptions extends {
|
|
schema: keyof DatabaseWithoutInternals
|
|
}
|
|
? DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Tables'][TableName] extends {
|
|
Insert: infer I
|
|
}
|
|
? I
|
|
: never
|
|
: DefaultSchemaTableNameOrOptions extends keyof DefaultSchema['Tables']
|
|
? DefaultSchema['Tables'][DefaultSchemaTableNameOrOptions] extends {
|
|
Insert: infer I
|
|
}
|
|
? I
|
|
: never
|
|
: never
|
|
|
|
export type TablesUpdate<
|
|
DefaultSchemaTableNameOrOptions extends
|
|
| keyof DefaultSchema['Tables']
|
|
| { schema: keyof DatabaseWithoutInternals },
|
|
TableName extends DefaultSchemaTableNameOrOptions extends {
|
|
schema: keyof DatabaseWithoutInternals
|
|
}
|
|
? keyof DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Tables']
|
|
: never = never,
|
|
> = DefaultSchemaTableNameOrOptions extends {
|
|
schema: keyof DatabaseWithoutInternals
|
|
}
|
|
? DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions['schema']]['Tables'][TableName] extends {
|
|
Update: infer U
|
|
}
|
|
? U
|
|
: never
|
|
: DefaultSchemaTableNameOrOptions extends keyof DefaultSchema['Tables']
|
|
? DefaultSchema['Tables'][DefaultSchemaTableNameOrOptions] extends {
|
|
Update: infer U
|
|
}
|
|
? U
|
|
: never
|
|
: never
|
|
|
|
export type Enums<
|
|
DefaultSchemaEnumNameOrOptions extends
|
|
| keyof DefaultSchema['Enums']
|
|
| { schema: keyof DatabaseWithoutInternals },
|
|
EnumName extends DefaultSchemaEnumNameOrOptions extends {
|
|
schema: keyof DatabaseWithoutInternals
|
|
}
|
|
? keyof DatabaseWithoutInternals[DefaultSchemaEnumNameOrOptions['schema']]['Enums']
|
|
: never = never,
|
|
> = DefaultSchemaEnumNameOrOptions extends {
|
|
schema: keyof DatabaseWithoutInternals
|
|
}
|
|
? DatabaseWithoutInternals[DefaultSchemaEnumNameOrOptions['schema']]['Enums'][EnumName]
|
|
: DefaultSchemaEnumNameOrOptions extends keyof DefaultSchema['Enums']
|
|
? DefaultSchema['Enums'][DefaultSchemaEnumNameOrOptions]
|
|
: never
|
|
|
|
export type CompositeTypes<
|
|
PublicCompositeTypeNameOrOptions extends
|
|
| keyof DefaultSchema['CompositeTypes']
|
|
| { schema: keyof DatabaseWithoutInternals },
|
|
CompositeTypeName extends PublicCompositeTypeNameOrOptions extends {
|
|
schema: keyof DatabaseWithoutInternals
|
|
}
|
|
? keyof DatabaseWithoutInternals[PublicCompositeTypeNameOrOptions['schema']]['CompositeTypes']
|
|
: never = never,
|
|
> = PublicCompositeTypeNameOrOptions extends {
|
|
schema: keyof DatabaseWithoutInternals
|
|
}
|
|
? DatabaseWithoutInternals[PublicCompositeTypeNameOrOptions['schema']]['CompositeTypes'][CompositeTypeName]
|
|
: PublicCompositeTypeNameOrOptions extends keyof DefaultSchema['CompositeTypes']
|
|
? DefaultSchema['CompositeTypes'][PublicCompositeTypeNameOrOptions]
|
|
: never
|
|
|
|
export const Constants = {
|
|
public: {
|
|
Enums: {
|
|
lover_visibility: ['public', 'member'],
|
|
},
|
|
},
|
|
} as const
|