Avatar defaults and colors

This commit is contained in:
Josh Perez 2021-08-05 20:17:05 -04:00 committed by GitHub
parent a001882d58
commit 12d2b1bf7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
140 changed files with 4212 additions and 1084 deletions

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

@ -24,6 +24,7 @@ import { ConversationColorType } from './types/Colors';
import { AttachmentType, ThumbnailType } from './types/Attachment';
import { ContactType } from './types/Contact';
import { SignalService as Proto } from './protobuf';
import { AvatarDataType } from './types/Avatar';
import AccessRequiredEnum = Proto.AccessControl.AccessRequired;
import MemberRoleEnum = Proto.Member.Role;
@ -299,6 +300,7 @@ export type ConversationAttributesType = {
path: string;
hash?: string;
} | null;
avatars?: Array<AvatarDataType>;
description?: string;
expireTimer?: number;
membersV2?: Array<GroupV2MemberType>;