feat: update members fetching to handle endpoint pagination update
Some checks failed
ci/woodpecker/push/build-and-publish Pipeline failed

This commit is contained in:
SauceyRed 2025-08-05 03:28:46 +02:00
commit 01a40a17a2
3 changed files with 20 additions and 3 deletions

View file

@ -31,6 +31,13 @@ export interface GuildMemberResponse {
user: UserResponse
}
export interface GuildMembersResponse {
objects: GuildMemberResponse[],
amount: number,
pages: number,
page: number
}
export interface ChannelResponse {
uuid: string,
guild_uuid: string,