Show story replies in the timeline

This commit is contained in:
Josh Perez 2022-03-16 13:30:14 -04:00 committed by GitHub
parent 55716c5db6
commit 3620309f22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 705 additions and 461 deletions

7
ts/model-types.d.ts vendored
View file

@ -85,6 +85,12 @@ export type QuotedMessageType = {
messageId: string;
};
type StoryReplyContextType = {
attachment?: AttachmentType;
authorUuid?: string;
messageId: string;
};
export type StickerMessageType = {
packId: string;
stickerId: number;
@ -147,6 +153,7 @@ export type MessageAttributesType = {
retryOptions?: RetryOptions;
sourceDevice?: number;
storyId?: string;
storyReplyContext?: StoryReplyContextType;
supportedVersionAtReceive?: unknown;
synced?: boolean;
unidentifiedDeliveryReceived?: boolean;