feat(P4C.T2): shared soundboards wrappers + sealed-blob crypto + tests

This commit is contained in:
byGalax
2026-05-16 20:53:48 +02:00
parent 1fe196b839
commit f981904e7f
4 changed files with 368 additions and 0 deletions
+44
View File
@@ -538,6 +538,50 @@ export type Database = {
},
]
}
user_soundboards: {
Row: {
id: string
user_id: string
name: string
mime: string
size: number
category: string | null
hotkey: string | null
gain: number
sort_order: number
storage_path: string
created_at: string
updated_at: string
}
Insert: {
id?: string
user_id: string
name: string
mime: string
size: number
category?: string | null
hotkey?: string | null
gain?: number
sort_order?: number
storage_path: string
created_at?: string
updated_at?: string
}
Update: {
id?: string
user_id?: string
name?: string
mime?: string
size?: number
category?: string | null
hotkey?: string | null
gain?: number
sort_order?: number
storage_path?: string
updated_at?: string
}
Relationships: []
}
}
Views: {
[_ in never]: never