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

DROID-1685 Protocol | Enhancement | MW 0.28.1 (#329)

This commit is contained in:
Konstantin Ivanov 2023-08-31 09:13:28 +02:00 committed by GitHub
parent b4b9708149
commit b3889e33c7
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 28 additions and 4 deletions

View file

@ -1,5 +1,5 @@
[versions]
middlewareVersion = "v0.27.20"
middlewareVersion = "v0.28.1"
kotlinVersion = '1.7.10'
androidxCoreVersion = "1.10.1"

View file

@ -5361,6 +5361,28 @@ message Rpc {
}
}
message StackGoroutines {
message Request {
string path = 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 ExportLocalstore {
message Request {
// the path where export files will place

View file

@ -720,8 +720,9 @@ message Event {
bool coverFit = 6; // Image fits container
string groupRelationKey = 7; // Group view by this relationKey
bool groupBackgroundColors = 8; // Enable backgrounds in groups
int32 pageLimit = 9;
int32 pageLimit = 9; // Limit of objects shown in widget
string defaultTemplateId = 10; // Id of template object set default for the view
string defaultObjectTypeId = 15; // Default object type that is chosen for new object created within the view
}
message Filter {

View file

@ -325,8 +325,9 @@ message Block {
bool coverFit = 10; // Image fits container
string groupRelationKey = 11; // Group view by this relationKey
bool groupBackgroundColors = 12; // Enable backgrounds in groups
int32 pageLimit = 13;
string defaultTemplateId = 14;
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
enum Type {
Table = 0;