Sync mute state

This commit is contained in:
Josh Perez 2021-04-09 09:19:38 -07:00 committed by GitHub
parent 15247e1c9a
commit 6c0acd09df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 236 additions and 61 deletions

3
ts/textsecure.d.ts vendored
View file

@ -1057,6 +1057,7 @@ export declare class ContactRecordClass {
whitelisted?: boolean | null;
archived?: boolean | null;
markedUnread?: boolean;
mutedUntilTimestamp?: ProtoBigNumberType;
__unknownFields?: ArrayBuffer;
}
@ -1073,6 +1074,7 @@ export declare class GroupV1RecordClass {
whitelisted?: boolean | null;
archived?: boolean | null;
markedUnread?: boolean;
mutedUntilTimestamp?: ProtoBigNumberType;
__unknownFields?: ArrayBuffer;
}
@ -1089,6 +1091,7 @@ export declare class GroupV2RecordClass {
whitelisted?: boolean | null;
archived?: boolean | null;
markedUnread?: boolean;
mutedUntilTimestamp?: ProtoBigNumberType;
__unknownFields?: ArrayBuffer;
}