Display user badges

This commit is contained in:
Evan Hahn
2021-11-02 18:01:13 -05:00
committed by GitHub
parent 927c22ef73
commit f647c4e053
95 changed files with 2891 additions and 424 deletions
+8
View File
@@ -208,6 +208,14 @@ export type ConversationAttributesTypeType = 'private' | 'group';
export type ConversationAttributesType = {
accessKey?: string | null;
addedBy?: string;
badges?: Array<
| { id: string }
| {
id: string;
expiresAt: number;
isVisible: boolean;
}
>;
capabilities?: CapabilitiesType;
color?: string;
conversationColor?: ConversationColorType;