Nightly: Kategorien eingeführt Persistenz (state.json), API (CRUD + Bulk-Assign), Sounds-Filter unterstützt categoryId
This commit is contained in:
parent
b11e7dd666
commit
3d1a6ca60b
3 changed files with 131 additions and 7 deletions
|
|
@ -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 };
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue