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

update mw to 0.13.3 (#922)

This commit is contained in:
Evgenii Kozlov 2020-09-25 01:20:02 +03:00 committed by GitHub
parent 7cd20db52b
commit 54b6ca7aa4
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 2 deletions

View file

@ -24,7 +24,7 @@
### Middleware ⚙
* Updated middleware protocol to `0.13.10` (#851)
* Updated middleware protocol to `0.13.13` (#851)
## Version 0.0.47

View file

@ -85,4 +85,4 @@ message Change {
string key = 1;
}
}
}

View file

@ -2233,6 +2233,33 @@ message Rpc {
}
}
}
message Page {
message Create {
message Request {
google.protobuf.Struct details = 1; // page details
}
message Response {
Error error = 1;
string pageId = 3;
ResponseEvent event = 4;
message Error {
Code code = 1;
string description = 2;
enum Code {
NULL = 0;
UNKNOWN_ERROR = 1;
BAD_INPUT = 2;
// ...
}
}
}
}
}
}
message Empty {