feat: avatar decoration

This commit is contained in:
Hexagonn
2024-09-28 15:48:49 +07:00
parent 7c3aba4851
commit e4842100f1
2 changed files with 54 additions and 1 deletions

View File

@@ -38,6 +38,7 @@ export interface DiscordUser {
global_name: string;
display_name: string;
clan: ClanTag | null;
avatar_decoration_data: AvatarDecoration | null;
}
export interface ClanTag {
@@ -47,6 +48,12 @@ export interface ClanTag {
identity_guild_id: number;
}
export interface AvatarDecoration {
sku_id: string;
asset: string;
expires_at: number;
}
export interface Activity {
type: number;
state: string;