mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-07 21:37:02 +09:00
DROID-3124 Protocol | Enhancement | MW 0.38.0 (#1868)
This commit is contained in:
parent
7a689b9895
commit
2b40f21910
3 changed files with 36 additions and 16 deletions
|
@ -1,5 +1,5 @@
|
|||
[versions]
|
||||
middlewareVersion = "v0.37.4"
|
||||
middlewareVersion = "v0.38.0"
|
||||
kotlinVersion = '2.0.21'
|
||||
kspVersion = "2.0.21-1.0.25"
|
||||
|
||||
|
|
|
@ -2776,10 +2776,6 @@ message Rpc {
|
|||
enum UseCase {
|
||||
NONE = 0;
|
||||
GET_STARTED = 1;
|
||||
PERSONAL_PROJECTS = 2;
|
||||
KNOWLEDGE_BASE = 3;
|
||||
NOTES_DIARY = 4;
|
||||
STRATEGIC_WRITING = 5;
|
||||
EMPTY = 6;
|
||||
}
|
||||
}
|
||||
|
@ -2826,6 +2822,29 @@ message Rpc {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
message DateByTimestamp {
|
||||
message Request {
|
||||
string spaceId = 1;
|
||||
int64 timestamp = 2;
|
||||
}
|
||||
|
||||
message Response {
|
||||
Error error = 1;
|
||||
google.protobuf.Struct details = 2;
|
||||
|
||||
message Error {
|
||||
Code code = 1;
|
||||
string description = 2;
|
||||
|
||||
enum Code {
|
||||
NULL = 0;
|
||||
UNKNOWN_ERROR = 1;
|
||||
BAD_INPUT = 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
message ObjectCollection {
|
||||
|
|
|
@ -407,17 +407,18 @@ message Block {
|
|||
enum FormulaType {
|
||||
None = 0;
|
||||
Count = 1;
|
||||
CountDistinct = 2;
|
||||
CountEmpty = 3;
|
||||
CountNotEmpty = 4;
|
||||
PercentEmpty = 5;
|
||||
PercentNotEmpty = 6;
|
||||
MathSum = 7;
|
||||
MathAverage = 8;
|
||||
MathMedian = 9;
|
||||
MathMin = 10;
|
||||
MathMax = 11;
|
||||
Range = 12;
|
||||
CountValue = 2;
|
||||
CountDistinct = 3;
|
||||
CountEmpty = 4;
|
||||
CountNotEmpty = 5;
|
||||
PercentEmpty = 6;
|
||||
PercentNotEmpty = 7;
|
||||
MathSum = 8;
|
||||
MathAverage = 9;
|
||||
MathMedian = 10;
|
||||
MathMin = 11;
|
||||
MathMax = 12;
|
||||
Range = 13;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue