@@ -7,6 +7,31 @@ export type Json =
77 | Json [ ] ;
88
99export type Database = {
10+ graphql_public : {
11+ Tables : {
12+ [ _ in never ] : never ;
13+ } ;
14+ Views : {
15+ [ _ in never ] : never ;
16+ } ;
17+ Functions : {
18+ graphql : {
19+ Args : {
20+ extensions ?: Json ;
21+ operationName ?: string ;
22+ query ?: string ;
23+ variables ?: Json ;
24+ } ;
25+ Returns : Json ;
26+ } ;
27+ } ;
28+ Enums : {
29+ [ _ in never ] : never ;
30+ } ;
31+ CompositeTypes : {
32+ [ _ in never ] : never ;
33+ } ;
34+ } ;
1035 public : {
1136 Tables : {
1237 github_event_log : {
@@ -68,50 +93,41 @@ export type Database = {
6893 } ;
6994 public_timeline : {
7095 Row : {
71- categories : string [ ] | null ;
7296 created_at : string ;
7397 data : Json ;
7498 dedupe_hash : string ;
7599 event_ids : string [ ] | null ;
76100 id : string ;
77- is_read : boolean ;
78101 repo_id : string ;
79102 score : number ;
80103 search_text : string | null ;
81104 search_vector : unknown ;
82- snooze_to : string | null ;
83105 type : string ;
84106 updated_at : string ;
85107 } ;
86108 Insert : {
87- categories ?: string [ ] | null ;
88109 created_at ?: string ;
89110 data : Json ;
90111 dedupe_hash : string ;
91112 event_ids ?: string [ ] | null ;
92113 id ?: string ;
93- is_read ?: boolean ;
94114 repo_id : string ;
95115 score : number ;
96116 search_text ?: string | null ;
97117 search_vector ?: unknown ;
98- snooze_to ?: string | null ;
99118 type : string ;
100119 updated_at ?: string ;
101120 } ;
102121 Update : {
103- categories ?: string [ ] | null ;
104122 created_at ?: string ;
105123 data ?: Json ;
106124 dedupe_hash ?: string ;
107125 event_ids ?: string [ ] | null ;
108126 id ?: string ;
109- is_read ?: boolean ;
110127 repo_id ?: string ;
111128 score ?: number ;
112129 search_text ?: string | null ;
113130 search_vector ?: unknown ;
114- snooze_to ?: string | null ;
115131 type ?: string ;
116132 updated_at ?: string ;
117133 } ;
@@ -270,52 +286,43 @@ export type Database = {
270286 } ;
271287 user_timeline : {
272288 Row : {
273- categories : string [ ] | null ;
274289 created_at : string ;
275290 data : Json ;
276291 dedupe_hash : string ;
277292 event_ids : string [ ] | null ;
278293 id : string ;
279- is_read : boolean ;
280294 repo_id : string ;
281295 score : number ;
282296 search_text : string | null ;
283297 search_vector : unknown ;
284- snooze_to : string | null ;
285298 type : string ;
286299 updated_at : string ;
287300 user_id : string ;
288301 } ;
289302 Insert : {
290- categories ?: string [ ] | null ;
291303 created_at ?: string ;
292304 data : Json ;
293305 dedupe_hash : string ;
294306 event_ids ?: string [ ] | null ;
295307 id ?: string ;
296- is_read ?: boolean ;
297308 repo_id : string ;
298309 score : number ;
299310 search_text ?: string | null ;
300311 search_vector ?: unknown ;
301- snooze_to ?: string | null ;
302312 type : string ;
303313 updated_at ?: string ;
304314 user_id : string ;
305315 } ;
306316 Update : {
307- categories ?: string [ ] | null ;
308317 created_at ?: string ;
309318 data ?: Json ;
310319 dedupe_hash ?: string ;
311320 event_ids ?: string [ ] | null ;
312321 id ?: string ;
313- is_read ?: boolean ;
314322 repo_id ?: string ;
315323 score ?: number ;
316324 search_text ?: string | null ;
317325 search_vector ?: unknown ;
318- snooze_to ?: string | null ;
319326 type ?: string ;
320327 updated_at ?: string ;
321328 user_id ?: string ;
@@ -499,6 +506,9 @@ export type CompositeTypes<
499506 : never ;
500507
501508export const Constants = {
509+ graphql_public : {
510+ Enums : { } ,
511+ } ,
502512 public : {
503513 Enums : { } ,
504514 } ,
0 commit comments