@hobenakicoffee/libraries 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/types/supabase.ts +3 -0
package/package.json
CHANGED
package/src/types/supabase.ts
CHANGED
|
@@ -289,6 +289,7 @@ export type Database = {
|
|
|
289
289
|
page_slug: string
|
|
290
290
|
role: Database["public"]["Enums"]["user_role"]
|
|
291
291
|
social_links: Json | null
|
|
292
|
+
thank_you_items: Json | null
|
|
292
293
|
theme: Json | null
|
|
293
294
|
updated_at: string | null
|
|
294
295
|
username: string
|
|
@@ -308,6 +309,7 @@ export type Database = {
|
|
|
308
309
|
page_slug: string
|
|
309
310
|
role?: Database["public"]["Enums"]["user_role"]
|
|
310
311
|
social_links?: Json | null
|
|
312
|
+
thank_you_items?: Json | null
|
|
311
313
|
theme?: Json | null
|
|
312
314
|
updated_at?: string | null
|
|
313
315
|
username: string
|
|
@@ -327,6 +329,7 @@ export type Database = {
|
|
|
327
329
|
page_slug?: string
|
|
328
330
|
role?: Database["public"]["Enums"]["user_role"]
|
|
329
331
|
social_links?: Json | null
|
|
332
|
+
thank_you_items?: Json | null
|
|
330
333
|
theme?: Json | null
|
|
331
334
|
updated_at?: string | null
|
|
332
335
|
username?: string
|