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:
parent
b4b9708149
commit
b3889e33c7
4 changed files with 28 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
[versions]
|
||||
middlewareVersion = "v0.27.20"
|
||||
middlewareVersion = "v0.28.1"
|
||||
kotlinVersion = '1.7.10'
|
||||
|
||||
androidxCoreVersion = "1.10.1"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue