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:
parent
0946f6ae2d
commit
0ec7441293
2 changed files with 23 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
[versions]
|
||||
middlewareVersion = "v0.32.0"
|
||||
middlewareVersion = "v0.32.1"
|
||||
kotlinVersion = '1.8.22'
|
||||
|
||||
androidxCoreVersion = "1.12.0"
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue