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:
parent
7cd20db52b
commit
54b6ca7aa4
3 changed files with 29 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -85,4 +85,4 @@ message Change {
|
|||
string key = 1;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue