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:
parent
8878d0760b
commit
5abeb184ee
2 changed files with 25 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue