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

DROID-3035 Protocol | Integrate 0.37.0-alpha02 (#1775)

This commit is contained in:
Konstantin Ivanov 2024-11-06 17:22:26 +01:00 committed by GitHub
parent 551df4b847
commit 87684f5ca4
Signed by: github
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 7 deletions

View file

@ -1,5 +1,5 @@
[versions]
middlewareVersion = "v0.37.0-alpha01"
middlewareVersion = "v0.37.0-alpha02"
kotlinVersion = '2.0.21'
kspVersion = "2.0.21-1.0.25"

View file

@ -8,12 +8,6 @@ import "google/protobuf/struct.proto";
// the element of change tree used to store and internal apply smartBlock history
message Change {
// ids of previous changes
repeated string previous_ids = 1;
// id of the last snapshot
string last_snapshot_id = 2;
// ids of the last changes with details/relations content
repeated string previous_meta_ids = 5;
// set of actions to apply
repeated Content content = 3;
// snapshot - when not null, the Content will be ignored
@ -181,6 +175,16 @@ message Change {
}
}
message ChangeNoSnapshot {
// set of actions to apply
repeated Change.Content content = 3;
// file keys related to changes content
repeated Change.FileKeys fileKeys = 6;
// creation timestamp
int64 timestamp = 7;
// version of business logic
uint32 version = 8;
}
message StoreChange {
repeated StoreChangeContent changeSet = 1;