GroupsV2: Better group invite behavior

This commit is contained in:
Scott Nonnenberg 2020-10-06 10:06:34 -07:00 committed by Josh Perez
commit d51a0b5ece
24 changed files with 1408 additions and 313 deletions

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

@ -139,7 +139,7 @@ export type ConversationAttributesTypeType = 'private' | 'group';
export type ConversationAttributesType = {
accessKey: string | null;
addedBy: string;
addedBy?: string;
capabilities: { uuid: string };
color?: ColorType;
discoveredUnregisteredAt: number;
@ -155,8 +155,8 @@ export type ConversationAttributesType = {
muteExpiresAt: number;
pinIndex?: number;
profileAvatar: WhatIsThis;
profileKeyCredential: unknown | null;
profileKeyVersion: string;
profileKeyCredential: string | null;
profileKeyVersion: string | null;
quotedMessageId: string;
sealedSender: unknown;
sentMessageCount: number;