1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-09 09:35:00 +09:00

GO-1330 Fix rebase changes

This commit is contained in:
Mikhail Iudin 2023-04-25 18:17:59 +02:00
parent 384d9bea4f
commit 400ce08276
No known key found for this signature in database
GPG key ID: FAAAA8BAABDFF1C0
67 changed files with 5734 additions and 6268 deletions

View file

@ -62,6 +62,7 @@ message Change {
StoreKeySet storeKeySet = 107;
StoreKeyUnset storeKeyUnset = 108;
StoreSliceUpdate storeSliceUpdate = 109;
}
}
@ -152,4 +153,27 @@ message Change {
message StoreKeyUnset {
repeated string path = 1;
}
message StoreSliceUpdate {
string key = 1;
oneof operation {
Add add = 2;
Remove remove = 3;
Move move = 4;
}
message Add {
string afterId = 1;
repeated string ids = 2;
}
message Remove {
repeated string ids = 1;
}
message Move {
string afterId = 1;
repeated string ids = 2;
}
}
}