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

DROID-2875 Protocol | Integrate 0.36.0-rc6 (#1616)

This commit is contained in:
Konstantin Ivanov 2024-10-02 10:19:55 +02:00 committed by GitHub
parent 8878d0760b
commit 5abeb184ee
Signed by: github
GPG key ID: B5690EEEBB952194
2 changed files with 25 additions and 1 deletions

View file

@ -1,5 +1,5 @@
[versions]
middlewareVersion = "v0.36.0-rc5"
middlewareVersion = "v0.36.0-rc6"
kotlinVersion = '2.0.0'
kspVersion = "2.0.0-1.0.22"

View file

@ -3034,6 +3034,30 @@ message Rpc {
}
}
}
message ListWithValue {
message Request {
string spaceId = 1;
google.protobuf.Value value = 2;
}
message Response {
Error error = 1;
repeated string relationKeys = 2;
repeated int64 counters = 3;
message Error {
Code code = 1;
string description = 2;
enum Code {
NULL = 0;
UNKNOWN_ERROR = 1;
BAD_INPUT = 2;
}
}
}
}
}
message History {