AppFlowy/shared-lib/flowy-sync/resources/proto/revision.proto

26 lines
441 B
Protocol Buffer
Raw Normal View History

2021-09-23 07:49:10 +00:00
syntax = "proto3";
2021-11-19 04:18:46 +00:00
2021-09-23 07:49:10 +00:00
message Revision {
int64 base_rev_id = 1;
int64 rev_id = 2;
bytes delta_data = 3;
2021-09-23 07:49:10 +00:00
string md5 = 4;
2022-01-14 07:23:21 +00:00
string object_id = 5;
2021-09-26 08:39:57 +00:00
RevType ty = 6;
2021-12-09 14:28:11 +00:00
string user_id = 7;
2021-09-26 08:39:57 +00:00
}
2021-12-22 10:53:52 +00:00
message RepeatedRevision {
repeated Revision items = 1;
}
2021-12-07 14:32:34 +00:00
message RevId {
int64 value = 1;
}
message RevisionRange {
2022-01-25 12:37:48 +00:00
int64 start = 1;
int64 end = 2;
}
2022-01-01 08:16:06 +00:00
enum RevType {
DeprecatedLocal = 0;
DeprecatedRemote = 1;
}