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

DROID-2579 Protocol | Integrate 0.34.0 (#1282)

This commit is contained in:
Konstantin Ivanov 2024-06-10 12:16:55 +02:00 committed by konstantiniiv
parent a5dec4e5e1
commit 2d8414912b
3 changed files with 3 additions and 6 deletions

View file

@ -1,5 +1,5 @@
[versions]
middlewareVersion = "v0.34.0-rc9"
middlewareVersion = "v0.34.0"
kotlinVersion = '1.9.22'
androidxCoreVersion = "1.13.0"

View file

@ -5483,14 +5483,12 @@ message Rpc {
}
}
}
// set the current active view (persisted only within a session)
// set the current active view locally
message SetActive {
message Request {
string contextId = 1;
string blockId = 2; // id of dataview block
string viewId = 3; // id of active view
uint32 offset = 4;
uint32 limit = 5;
}
message Response {
Error error = 1;
@ -5504,7 +5502,6 @@ message Rpc {
NULL = 0;
UNKNOWN_ERROR = 1;
BAD_INPUT = 2;
// ...
}
}
}

View file

@ -333,9 +333,9 @@ message Block {
message Dataview {
repeated string source = 1;
repeated View views = 2;
string activeView = 3; // do not generate changes for this field
// deprecated
repeated model.Relation relations = 4;
string activeView = 3; // saved within a session
repeated GroupOrder groupOrders = 12;
repeated ObjectOrder objectOrders = 13;
repeated anytype.model.RelationLink relationLinks = 5;