1
0
Fork 0
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:
Konstantin Ivanov 2025-04-09 14:41:02 +02:00 committed by GitHub
parent 6e0b6274bd
commit 187cb9fc3b
Signed by: github
GPG key ID: B5690EEEBB952194
2 changed files with 24 additions and 1 deletions

View file

@ -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 {