1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-07 21:37:02 +09:00

DROID-3717 Protocol | Enhancement | MW 0.41.0-rc16 (#2485)

This commit is contained in:
Evgenii Kozlov 2025-06-02 12:54:42 +02:00 committed by GitHub
parent 7623b454fe
commit 444aa35748
Signed by: github
GPG key ID: B5690EEEBB952194
4 changed files with 25 additions and 1 deletions

View file

@ -1,5 +1,5 @@
[versions]
middlewareVersion = "v0.41.0-rc15"
middlewareVersion = "v0.41.0-rc16"
kotlinVersion = '2.0.21'
kspVersion = "2.0.21-1.0.25"

View file

@ -8508,6 +8508,28 @@ message Rpc {
}
}
}
message ReadAll {
message Request {}
message Response {
Error error = 1;
message Error {
Code code = 1;
string description = 2;
enum Code {
NULL = 0;
UNKNOWN_ERROR = 1;
BAD_INPUT = 2;
// ...
}
}
}
}
}
message PushNotification {
message RegisterToken {

View file

@ -817,6 +817,7 @@ message Event {
anytype.model.Block.Content.Dataview.View.Size cardSize = 5; // Gallery card size
bool coverFit = 6; // Image fits container
string groupRelationKey = 7; // Group view by this relationKey
string endRelationKey = 16;
bool groupBackgroundColors = 8; // Enable backgrounds in groups
int32 pageLimit = 9; // Limit of objects shown in widget
string defaultTemplateId = 10; // Id of template object set default for the view

View file

@ -363,6 +363,7 @@ message Block {
int32 pageLimit = 13; // Limit of objects shown in widget
string defaultTemplateId = 14; // Default template that is chosen for new object created within the view
string defaultObjectTypeId = 15; // Default object type that is chosen for new object created within the view
string endRelationKey = 16; // Group view by this relationKey
enum Type {
Table = 0;