Introduce TitleTransition notification
This commit is contained in:
parent
09b5e6ef50
commit
3469a748fb
16 changed files with 336 additions and 51 deletions
5
ts/model-types.d.ts
vendored
5
ts/model-types.d.ts
vendored
|
@ -191,6 +191,7 @@ export type MessageAttributesType = {
|
|||
| 'timer-notification'
|
||||
| 'universal-timer-notification'
|
||||
| 'contact-removed-notification'
|
||||
| 'title-transition-notification'
|
||||
| 'verified-change';
|
||||
body?: string;
|
||||
attachments?: Array<AttachmentType>;
|
||||
|
@ -225,6 +226,9 @@ export type MessageAttributesType = {
|
|||
conversationMerge?: {
|
||||
renderInfo: ConversationRenderInfoType;
|
||||
};
|
||||
titleTransition?: {
|
||||
renderInfo: ConversationRenderInfoType;
|
||||
};
|
||||
|
||||
// Legacy fields for timer update notification only
|
||||
flags?: number;
|
||||
|
@ -338,6 +342,7 @@ export type ConversationAttributesType = {
|
|||
profileKeyCredential?: string | null;
|
||||
profileKeyCredentialExpiration?: number | null;
|
||||
lastProfile?: ConversationLastProfileType;
|
||||
needsTitleTransition?: boolean;
|
||||
quotedMessageId?: string | null;
|
||||
sealedSender?: unknown;
|
||||
sentMessageCount?: number;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue