Skip to content

Commit d01d52b

Browse files
committed
chore: upgrade dependencies and supabase types
1 parent a2582ef commit d01d52b

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

bun.lockb

27.7 KB
Binary file not shown.

nuxt.config.ts

-6
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,6 @@ export default defineNuxtConfig({
4242
siteKey: '0x4AAAAAAAKsKEdr-d1daiqG'
4343
},
4444

45-
vuetify: {
46-
vuetifyOptions: {
47-
labComponents: 'VDataTable'
48-
}
49-
},
50-
5145
routeRules: {
5246
'/settings': { redirect: '/settings/profile' }
5347
},

types/supabase.ts

+17-5
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,21 @@ export interface Database {
5757
{
5858
foreignKeyName: "games_black_player_fkey"
5959
columns: ["black_player"]
60+
isOneToOne: false
6061
referencedRelation: "users"
6162
referencedColumns: ["id"]
6263
},
6364
{
6465
foreignKeyName: "games_user_id_fkey"
6566
columns: ["user_id"]
67+
isOneToOne: false
6668
referencedRelation: "users"
6769
referencedColumns: ["id"]
6870
},
6971
{
7072
foreignKeyName: "games_white_player_fkey"
7173
columns: ["white_player"]
74+
isOneToOne: false
7275
referencedRelation: "users"
7376
referencedColumns: ["id"]
7477
}
@@ -103,6 +106,7 @@ export interface Database {
103106
{
104107
foreignKeyName: "integrations_user_id_fkey"
105108
columns: ["user_id"]
109+
isOneToOne: false
106110
referencedRelation: "users"
107111
referencedColumns: ["id"]
108112
}
@@ -113,7 +117,7 @@ export interface Database {
113117
bio: string | null
114118
created_at: string
115119
first_name: string | null
116-
flags: number | null
120+
flags: number
117121
id: string
118122
last_name: string | null
119123
username: string | null
@@ -122,21 +126,29 @@ export interface Database {
122126
bio?: string | null
123127
created_at?: string
124128
first_name?: string | null
125-
flags?: number | null
126-
id?: string
129+
flags?: number
130+
id: string
127131
last_name?: string | null
128132
username?: string | null
129133
}
130134
Update: {
131135
bio?: string | null
132136
created_at?: string
133137
first_name?: string | null
134-
flags?: number | null
138+
flags?: number
135139
id?: string
136140
last_name?: string | null
137141
username?: string | null
138142
}
139-
Relationships: []
143+
Relationships: [
144+
{
145+
foreignKeyName: "users_id_fkey"
146+
columns: ["id"]
147+
isOneToOne: true
148+
referencedRelation: "users"
149+
referencedColumns: ["id"]
150+
}
151+
]
140152
}
141153
}
142154
Views: {

0 commit comments

Comments
 (0)