mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-07 21:37:02 +09:00
DROID-3650 fixes
This commit is contained in:
parent
c5bb4faea6
commit
a3207f18b7
3 changed files with 20 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
[versions]
|
||||
middlewareVersion = "v0.41.0-rc1"
|
||||
middlewareVersion = "v0.41.0-rc3"
|
||||
kotlinVersion = '2.0.21'
|
||||
kspVersion = "2.0.21-1.0.25"
|
||||
|
||||
|
|
|
@ -8297,11 +8297,21 @@ message Rpc {
|
|||
}
|
||||
|
||||
message SubscribeToMessagePreviews {
|
||||
message Request {}
|
||||
message Request {
|
||||
string subId = 1;
|
||||
}
|
||||
|
||||
message Response {
|
||||
Error error = 1;
|
||||
string subId = 2;
|
||||
repeated ChatPreview previews = 2;
|
||||
|
||||
message ChatPreview {
|
||||
string spaceId = 1;
|
||||
string chatObjectId = 2;
|
||||
model.ChatMessage message = 3;
|
||||
model.ChatState state = 4;
|
||||
repeated google.protobuf.Struct dependencies = 5;
|
||||
}
|
||||
|
||||
message Error {
|
||||
Code code = 1;
|
||||
|
@ -8318,7 +8328,9 @@ message Rpc {
|
|||
}
|
||||
|
||||
message UnsubscribeFromMessagePreviews {
|
||||
message Request {}
|
||||
message Request {
|
||||
string subId = 1;
|
||||
}
|
||||
|
||||
message Response {
|
||||
Error error = 1;
|
||||
|
|
|
@ -1367,7 +1367,11 @@ message MembershipTierData {
|
|||
// Android platform-specific data:
|
||||
string androidProductId = 17;
|
||||
string androidManageUrl = 18;
|
||||
|
||||
// "limited offer" or somehing like that
|
||||
string offer = 19;
|
||||
}
|
||||
|
||||
enum DeviceNetworkType {
|
||||
WIFI = 0;
|
||||
CELLULAR = 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue