Initial Commit
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user