1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-2566 Protocol | Integrate 0.34.0-rc9 (#1265)

This commit is contained in:
Konstantin Ivanov 2024-06-05 12:50:56 +02:00 committed by GitHub
parent e0f9429fd0
commit 32e8108402
Signed by: github
GPG key ID: B5690EEEBB952194
3 changed files with 34 additions and 1 deletions

View file

@ -3073,6 +3073,33 @@ message Rpc {
}
}
}
message DiffVersions {
message Request {
string objectId = 1;
string spaceId = 2;
string currentVersion = 3;
string previousVersion = 4;
}
message Response {
Error error = 1;
repeated Event.Message historyEvents = 2;
anytype.model.ObjectView objectView = 3;
message Error {
Code code = 1;
string description = 2;
enum Code {
NULL = 0;
UNKNOWN_ERROR = 1;
BAD_INPUT = 2;
// ...
}
}
}
}
}
message File {

View file

@ -916,6 +916,12 @@ message ObjectView {
int32 undo = 1;
int32 redo = 2;
}
repeated BlockParticipant blockParticipants = 11;
message BlockParticipant {
string blockId = 1;
string participantId = 2;
}
}
enum SpaceStatus {