1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00

Merge branch 'main' into GO-4093-key-value-object

# Conflicts:
#	go.mod
#	go.sum
This commit is contained in:
Mikhail Rakhmanov 2025-04-02 13:25:55 +02:00
commit 15a82b8675
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B
159 changed files with 8660 additions and 5626 deletions

View file

@ -63,7 +63,7 @@ message HeadSyncResultElement {
message HeadSyncRequest {
string spaceId = 1;
repeated HeadSyncRange ranges = 2;
DiffType diffType = 3 [deprecated=true];
DiffType diffType = 3;
}
// HeadSyncResponse is a response for HeadSync
@ -222,5 +222,6 @@ message KeyValue {
// DiffType is a type of diff
enum DiffType {
Initial = 0;
Precalculated = 1;
V1 = 1;
V2 = 2;
}