add author fields to MessageRecord type

This commit is contained in:
CREDO23 2026-01-14 18:38:47 +02:00
parent a8918b9cca
commit dcd36166fc

View file

@ -31,6 +31,9 @@ export interface MessageRecord {
role: "user" | "assistant" | "system";
content: unknown;
created_at: string;
author_id?: string | null;
author_display_name?: string | null;
author_avatar_url?: string | null;
}
export interface ThreadListResponse {