Nightly: Kategorien eingeführt Persistenz (state.json), API (CRUD + Bulk-Assign), Sounds-Filter unterstützt categoryId

This commit is contained in:
vibe-bot 2025-08-09 17:16:37 +02:00
parent b11e7dd666
commit 3d1a6ca60b
3 changed files with 131 additions and 7 deletions

View file

@ -10,6 +10,8 @@ export type SoundsResponse = {
items: Sound[];
total: number;
folders: Array<{ key: string; name: string; count: number }>;
categories?: Category[];
fileCategories?: Record<string, string[]>;
};
export type VoiceChannelInfo = {
@ -19,6 +21,8 @@ export type VoiceChannelInfo = {
channelName: string;
};
export type Category = { id: string; name: string; color?: string; sort?: number };