fix: errors caused by MessageResponse interface now returning GuildMemberResponse instead of UserResponse
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful

This commit is contained in:
SauceyRed 2025-08-05 03:43:59 +02:00
parent 6d5f1f0d0a
commit b1cf9df199
Signed by: sauceyred
GPG key ID: 270B096EF6E9A462
4 changed files with 20 additions and 20 deletions

View file

@ -45,7 +45,7 @@ export interface MessageResponse {
user_uuid: string,
message: string,
reply_to: string | null,
user: UserResponse,
member: GuildMemberResponse,
}
export interface InviteResponse {

View file

@ -1,9 +1,9 @@
import type { MessageResponse, UserResponse } from "./interfaces";
import type { GuildMemberResponse, MessageResponse, UserResponse } from "./interfaces";
export interface MessageProps {
class?: string,
img?: string | null,
author: UserResponse
author: GuildMemberResponse
text: string,
timestamp: number,
format: "12" | "24",