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

DROID-586 MW | Enhancement | Integrate 0.23.3 (#2686)

This commit is contained in:
Evgenii Kozlov 2022-10-26 20:33:25 +03:00
parent 91c70d3057
commit fb4c7ded1c
2 changed files with 25 additions and 2 deletions

View file

@ -86,7 +86,7 @@ ext {
// Anytype
middleware_version = 'v0.23.2'
middleware_version = 'v0.23.3'
mainApplication = [
kotlin: "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version",

View file

@ -13,7 +13,7 @@ import "google/protobuf/descriptor.proto";
// To disable authorization in specific method use no_auth option inside Request of that method
extend google.protobuf.MessageOptions {
optional bool no_auth = 7777;
bool no_auth = 7777;
}
/*
@ -1311,6 +1311,29 @@ message Rpc {
}
}
}
message SetInternalFlags {
message Request {
string contextId = 1;
repeated anytype.model.InternalFlag internalFlags = 7;
}
message Response {
Error error = 1;
ResponseEvent event = 2;
message Error {
Code code = 1;
string description = 2;
enum Code {
NULL = 0;
UNKNOWN_ERROR = 1;
BAD_INPUT = 2;
UNKNOWN_OBJECT_TYPE_URL = 3;
}
}
}
}
message SetDetails {
message Detail {