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:
parent
384d9bea4f
commit
400ce08276
67 changed files with 5734 additions and 6268 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue