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

DROID-2223 MW | Protocol 0.30.14 (#888)

This commit is contained in:
Konstantin Ivanov 2024-02-19 20:14:39 +01:00 committed by GitHub
parent 4a0998c211
commit ab9bb21c71
Signed by: github
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,5 @@
[versions]
middlewareVersion = "v0.30.13"
middlewareVersion = "v0.30.14"
kotlinVersion = '1.8.22'
androidxCoreVersion = "1.12.0"

View file

@ -26,6 +26,7 @@ message Rpc {
message App {
message GetVersion {
message Request {
option (no_auth) = true;
}
message Response {
Error error = 1;
@ -279,6 +280,7 @@ message Rpc {
bool disableLocalNetworkSync = 5; // Disable local network discovery
NetworkMode networkMode = 6; // optional, default is DefaultConfig
string networkCustomConfigFilePath = 7; // config path for the custom network mode }
bool preferYamuxTransport = 8; // optional, default is false, recommended in case of problems with QUIC transport
}
/**
* Middleware-to-front-end response for an account creation request, that can contain a NULL error and created account or a non-NULL error and an empty account
@ -398,6 +400,7 @@ message Rpc {
bool disableLocalNetworkSync = 3; // Disable local network discovery
NetworkMode networkMode = 4; // optional, default is DefaultConfig
string networkCustomConfigFilePath = 5; // config path for the custom network mode
bool preferYamuxTransport = 6; // optional, default is false, recommended in case of problems with QUIC transport
}
/**