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

DROID-3160 Protocol | Integrate 0.38.3 (#1906)

This commit is contained in:
Konstantin Ivanov 2024-12-11 11:28:40 +01:00 committed by GitHub
parent 68a4b5a4e5
commit 7acda602de
Signed by: github
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -1,5 +1,5 @@
[versions]
middlewareVersion = "v0.38.2"
middlewareVersion = "v0.38.3"
kotlinVersion = '2.0.21'
kspVersion = "2.0.21-1.0.25"

View file

@ -2817,7 +2817,7 @@ message Rpc {
enum UseCase {
NONE = 0;
GET_STARTED = 1;
EMPTY = 6;
EMPTY = 2;
}
}
@ -7628,6 +7628,7 @@ message Rpc {
message GetMessages {
message Request {
string chatObjectId = 1;
string afterOrderId = 4; // OrderId of the message after which to get messages
string beforeOrderId = 2; // OrderId of the message before which to get messages
int32 limit = 3;
}