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

DROID-2444 Protocol | MW, 0.33.0-rc17 (#1139)

This commit is contained in:
Konstantin Ivanov 2024-04-19 11:55:05 +02:00 committed by GitHub
parent cfd0ada78b
commit f0ffb8127e
Signed by: github
GPG key ID: B5690EEEBB952194
4 changed files with 15 additions and 2 deletions

View file

@ -1,5 +1,5 @@
[versions]
middlewareVersion = "v0.33.0-rc16"
middlewareVersion = "v0.33.0-rc17"
kotlinVersion = '1.9.22'
androidxCoreVersion = "1.12.0"

View file

@ -1341,6 +1341,7 @@ message Rpc {
NOT_FOUND = 3;
ANYTYPE_NEEDS_UPGRADE = 10; // failed to read unknown data format need to upgrade anytype
OBJECT_DELETED = 4;
// ...
}
}
@ -1394,7 +1395,9 @@ message Rpc {
UNKNOWN_ERROR = 1;
BAD_INPUT = 2;
NOT_FOUND = 3;
OBJECT_DELETED = 4;
ANYTYPE_NEEDS_UPGRADE = 10; // failed to read unknown data format need to upgrade anytype
// ...
}
}
@ -1764,12 +1767,14 @@ message Rpc {
message Graph {
message Request {
string spaceId = 5;
repeated anytype.model.Block.Content.Dataview.Filter filters = 1;
int32 limit = 2;
// additional filter by objectTypes
repeated string objectTypeFilter = 3; // DEPRECATED, GO-1926
repeated string keys = 4;
string spaceId = 5;
string collectionId = 6;
repeated string setSource = 7;
}
message Edge {
@ -6487,6 +6492,8 @@ message Rpc {
NOT_LOGGED_IN = 8;
PAYMENT_NODE_ERROR = 9;
CACHE_ERROR = 10;
// for some probable future use (if needed)
IN_BLACKLIST = 11;
}
}
}

View file

@ -95,6 +95,7 @@ message Event {
File.LimitReached fileLimitReached = 111;
File.SpaceUsage fileSpaceUsage = 112;
File.LocalUsage fileLocalUsage = 113;
File.LimitUpdated fileLimitUpdated = 118;
Notification.Send notificationSend = 114;
Notification.Update notificationUpdate = 115;
@ -1034,6 +1035,10 @@ message Event {
message LocalUsage {
uint64 localBytesUsage = 1;
}
message LimitUpdated {
uint64 bytesLimit = 1;
}
}
message Membership {

View file

@ -60,4 +60,5 @@ message ObjectStoreChecksums {
int32 bundledObjects = 9; // anytypeProfile and maybe some others in the feature
int32 filestoreKeysForceReindexCounter = 10;
bool areOldFilesRemoved = 12;
bool areDeletedObjectsReindexed = 13;
}