mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
DROID-3553 Protocol | Integrate 0.40.9 (#2268)
This commit is contained in:
parent
6e0b6274bd
commit
187cb9fc3b
2 changed files with 24 additions and 1 deletions
|
@ -1292,6 +1292,7 @@ message Rpc {
|
|||
message Response {
|
||||
Error error = 1;
|
||||
string spaceId = 2;
|
||||
string startingObjectId = 3;
|
||||
|
||||
message Error {
|
||||
Code code = 1;
|
||||
|
@ -3111,6 +3112,7 @@ message Rpc {
|
|||
message Response {
|
||||
Error error = 1;
|
||||
ResponseEvent event = 2;
|
||||
string startingObjectId = 3;
|
||||
|
||||
message Error {
|
||||
Code code = 1;
|
||||
|
@ -3484,6 +3486,27 @@ message Rpc {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
message ResolveLayoutConflicts {
|
||||
message Request {
|
||||
string typeObjectId = 1;
|
||||
}
|
||||
|
||||
message Response {
|
||||
Error error = 1;
|
||||
|
||||
message Error {
|
||||
Code code = 1;
|
||||
string description = 2;
|
||||
|
||||
enum Code {
|
||||
NULL = 0;
|
||||
UNKNOWN_ERROR = 1;
|
||||
BAD_INPUT = 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
message Relation {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue