fix: /guilds/me variable expecting wrong response object type

This commit is contained in:
SauceyRed 2025-05-31 16:32:51 +02:00
parent 9a84315b64
commit 3fd28ed3fc
Signed by: sauceyred
GPG key ID: 2BF92EB6D8A5CCA7
2 changed files with 11 additions and 4 deletions

View file

@ -23,6 +23,14 @@ export interface GuildResponse {
member_count: number
}
export interface GuildMemberResponse {
uuid: string,
nickname: string,
user_uuid: string,
guild_uuid: string,
user: UserResponse
}
export interface ChannelResponse {
uuid: string,
guild_uuid: string,