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:
parent
e0f9429fd0
commit
32e8108402
3 changed files with 34 additions and 1 deletions
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue