1
0
Fork 0
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:
Evgenii Kozlov 2024-12-05 00:34:03 +01:00 committed by GitHub
parent ca8721b725
commit f723d40183
Signed by: github
GPG key ID: B5690EEEBB952194
3 changed files with 44 additions and 2 deletions

View file

@ -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 {

View file

@ -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;