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

DROID-2299 Protocol | Enhancement | MW 0.32.1 (#981)

This commit is contained in:
Evgenii Kozlov 2024-03-05 18:40:38 +01:00 committed by uburoiubu
parent 0946f6ae2d
commit 0ec7441293
No known key found for this signature in database
GPG key ID: C8FB80E0A595FBB6
2 changed files with 23 additions and 3 deletions

View file

@ -1,5 +1,5 @@
[versions]
middlewareVersion = "v0.32.0"
middlewareVersion = "v0.32.1"
kotlinVersion = '1.8.22'
androidxCoreVersion = "1.12.0"

View file

@ -262,8 +262,6 @@ message Rpc {
message JoinCancel {
message Request {
string spaceId = 1;
string inviteCid = 2;
string inviteFileKey = 3;
}
message Response {
@ -5983,6 +5981,28 @@ message Rpc {
repeated string headIds = 2;
}
message Stat {
message Request {
}
message Response {
Error error = 1;
string jsonStat = 2;
message Error {
Code code = 1;
string description = 2;
enum Code {
NULL = 0;
UNKNOWN_ERROR = 1;
BAD_INPUT = 2;
// ...
}
}
}
}
message TreeHeads {
message Request {
string treeId = 1;