@@ -69,60 +69,60 @@ export interface Database {
69
69
products : {
70
70
Row : {
71
71
asset_urls : string [ ] | null
72
- comments_count : number | null
73
- created_at : string | null
72
+ comments_count : number
73
+ created_at : string
74
74
demo_url : string | null
75
75
description : string | null
76
76
github_url : string | null
77
77
id : number
78
- is_draft : boolean | null
79
- launch_date : string | null
80
- logo_url : string | null
81
- name : string | null
82
- owner_id : string | null
83
- pricing_type : number | null
78
+ is_draft : boolean
79
+ launch_date : string
80
+ logo_url : string
81
+ name : string
82
+ owner_id : string
83
+ pricing_type : number
84
84
slogan : string | null
85
- slug : string | null
86
- updated_at : string | null
87
- votes_counter : number | null
85
+ slug : string
86
+ updated_at : string
87
+ votes_counter : number
88
88
}
89
89
Insert : {
90
90
asset_urls ?: string [ ] | null
91
- comments_count ? : number | null
92
- created_at ?: string | null
91
+ comments_count : number
92
+ created_at ?: string
93
93
demo_url ?: string | null
94
94
description ?: string | null
95
95
github_url ?: string | null
96
96
id ?: number
97
- is_draft ? : boolean | null
98
- launch_date ? : string | null
99
- logo_url ? : string | null
100
- name ? : string | null
101
- owner_id ? : string | null
102
- pricing_type ? : number | null
97
+ is_draft : boolean
98
+ launch_date : string
99
+ logo_url : string
100
+ name : string
101
+ owner_id : string
102
+ pricing_type : number
103
103
slogan ?: string | null
104
- slug ? : string | null
105
- updated_at ?: string | null
106
- votes_counter ? : number | null
104
+ slug : string
105
+ updated_at ?: string
106
+ votes_counter : number
107
107
}
108
108
Update : {
109
109
asset_urls ?: string [ ] | null
110
- comments_count ?: number | null
111
- created_at ?: string | null
110
+ comments_count ?: number
111
+ created_at ?: string
112
112
demo_url ?: string | null
113
113
description ?: string | null
114
114
github_url ?: string | null
115
115
id ?: number
116
- is_draft ?: boolean | null
117
- launch_date ?: string | null
118
- logo_url ?: string | null
119
- name ?: string | null
120
- owner_id ?: string | null
121
- pricing_type ?: number | null
116
+ is_draft ?: boolean
117
+ launch_date ?: string
118
+ logo_url ?: string
119
+ name ?: string
120
+ owner_id ?: string
121
+ pricing_type ?: number
122
122
slogan ?: string | null
123
- slug ?: string | null
124
- updated_at ?: string | null
125
- votes_counter ?: number | null
123
+ slug ?: string
124
+ updated_at ?: string
125
+ votes_counter ?: number
126
126
}
127
127
}
128
128
}
0 commit comments