Add MP3 URL import and analytics widgets
This commit is contained in:
parent
e200087a73
commit
5a41b6a622
5 changed files with 380 additions and 19 deletions
|
|
@ -25,6 +25,18 @@ export type VoiceChannelInfo = {
|
|||
|
||||
export type Category = { id: string; name: string; color?: string; sort?: number };
|
||||
|
||||
export type AnalyticsItem = {
|
||||
name: string;
|
||||
relativePath: string;
|
||||
count: number;
|
||||
};
|
||||
|
||||
export type AnalyticsResponse = {
|
||||
totalSounds: number;
|
||||
totalPlays: number;
|
||||
mostPlayed: AnalyticsItem[];
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue