Add Receive support for the new CallLogEvent proto messages.

This commit is contained in:
Alex Hart
2023-07-19 12:02:53 -03:00
committed by Nicholas
parent 461875b0e4
commit a8349671d0
8 changed files with 260 additions and 20 deletions

View File

@@ -626,6 +626,15 @@ message SyncMessage {
optional bytes adminPassKey = 2;
}
message CallLogEvent {
enum Type {
CLEAR = 0;
}
optional Type type = 1;
optional uint64 timestamp = 2;
}
optional Sent sent = 1;
optional Contacts contacts = 2;
reserved /*groups*/ 3;
@@ -646,6 +655,7 @@ message SyncMessage {
optional PniChangeNumber pniChangeNumber = 18;
optional CallEvent callEvent = 19;
optional CallLinkUpdate callLinkUpdate = 20;
optional CallLogEvent callLogEvent = 21;
}
message AttachmentPointer {