add fields for server delivery tracking
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
ycc
2026-02-27 21:45:44 +01:00
parent e6f9bc796e
commit a322f3fccf
5 changed files with 45 additions and 19 deletions

View File

@@ -207,16 +207,18 @@ message Location {
message DbMessage {
bool outbound = 1; // direction of the message
string type = 2;
string type = 2;
bytes data = 3; // text data
ConversationStatus status = 4;
ContactCard contact = 5;
Group group = 6;
repeated string file_paths = 7;
Location current_location = 8;
bytes appdata = 9;
bytes appdata = 9;
Invitation invitation = 10;
string from = 11; // source peer uid, used when storing group conversations with more than one peer
string server_delivery_uuid = 12; // uuid returned by the server upon delivery
uint64 server_delivery_timestamp = 13; // timestamp of the server delivery
}
message VideoData {