mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
DROID-3129 Protocol | Enhancement | MW 0.38.1 (#1871)
This commit is contained in:
parent
ca8721b725
commit
f723d40183
3 changed files with 44 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
[versions]
|
||||
middlewareVersion = "v0.38.0"
|
||||
middlewareVersion = "v0.38.1"
|
||||
kotlinVersion = '2.0.21'
|
||||
kspVersion = "2.0.21-1.0.25"
|
||||
|
||||
|
|
|
@ -492,6 +492,47 @@ message Rpc {
|
|||
}
|
||||
}
|
||||
}
|
||||
message SetOrder {
|
||||
message Request {
|
||||
string spaceViewId = 1;
|
||||
repeated string spaceViewOrder = 2; // result order of space view ids
|
||||
}
|
||||
|
||||
message Response {
|
||||
Error error = 1;
|
||||
|
||||
message Error {
|
||||
Code code = 1;
|
||||
string description = 2;
|
||||
|
||||
enum Code {
|
||||
NULL = 0;
|
||||
UNKNOWN_ERROR = 1;
|
||||
BAD_INPUT = 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
message UnsetOrder {
|
||||
message Request {
|
||||
string spaceViewId = 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 Wallet {
|
||||
|
|
|
@ -430,6 +430,7 @@ message Block {
|
|||
bool includeTime = 5;
|
||||
string id = 6;
|
||||
EmptyType emptyPlacement = 7;
|
||||
bool noCollate = 8;
|
||||
|
||||
enum Type {
|
||||
Asc = 0;
|
||||
|
@ -660,7 +661,7 @@ message Account {
|
|||
string workspaceObjectId = 15; // workspace object id. used for space-level chat
|
||||
|
||||
string deviceId = 8;
|
||||
string accountSpaceId = 9;
|
||||
string accountSpaceId = 9; // the first created private space. It's filled only when account is created
|
||||
string widgetsId = 10;
|
||||
string spaceViewId = 13;
|
||||
string techSpaceId = 14;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue