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

DROID-1097 Protocol | Enhancement | MW 0.26.0-rc4 (#3033)

This commit is contained in:
Evgenii Kozlov 2023-03-21 23:19:35 +01:00 committed by GitHub
parent fe03adf208
commit 4b513fcd47
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

@ -1,5 +1,5 @@
[versions]
middlewareVersion = "v0.26.0-rc3"
middlewareVersion = "v0.26.0-rc4"
kotlinVersion = '1.7.10'
androidxCoreVersion = "1.9.0"
androidxComposeVersion1 = '1.3.1'

View file

@ -523,8 +523,8 @@ message Rpc {
}
message RecoverFromLegacyExport {
option (no_auth) = true;
message Request {
option (no_auth) = true;
string path = 1;
string rootPath = 2;
}
@ -1863,7 +1863,7 @@ message Rpc {
}
message MigrationParams {
string address = 1;
string accountId = 1;
string path = 2;
}
@ -1878,6 +1878,8 @@ message Rpc {
message CsvParams {
repeated string path = 1;
Mode mode = 2;
bool useFirstColumnForRelations = 3; // use for collection mode
string delimiter = 4;
enum Mode {
COLLECTION = 0;