Initial Commit
linter / quality (push) Canceled after 0s
tests / ci (8.3) (push) Canceled after 0s
tests / ci (8.4) (push) Canceled after 0s
tests / ci (8.5) (push) Canceled after 0s

This commit is contained in:
2026-08-28 23:53:45 +10:00
parent 3ce70b3701
commit 37ff8e0a88
13 changed files with 292 additions and 23 deletions
+8
View File
@@ -78,6 +78,12 @@ export interface ThreadReaction {
username: string | null;
}
export interface ThreadStoryShare {
username: string;
item_id: string;
exists_locally: boolean;
}
export interface ThreadMessage {
id: string;
user_id: string | null;
@@ -90,9 +96,11 @@ export interface ThreadMessage {
shared_preview_image: string | null;
shared_title: string | null;
shared_caption: string | null;
attachments: { url: string; width: number | null; height: number | null }[] | null;
reactions: ThreadReaction[] | null;
replied_to_id: string | null;
replied_to_text: string | null;
story_share: ThreadStoryShare | null;
}
export interface ThreadDetail {