feat: update members fetching to handle endpoint pagination update
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful
ci/woodpecker/pull_request_closed/build-and-publish Pipeline was successful

This commit is contained in:
SauceyRed 2025-08-05 03:28:46 +02:00
parent b1cf9df199
commit 8e3f7212a5
Signed by: sauceyred
GPG key ID: 270B096EF6E9A462
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,