|
@@ -17,164 +17,12 @@
|
|
#![allow(trivial_casts)]
|
|
#![allow(trivial_casts)]
|
|
#![allow(unused_imports)]
|
|
#![allow(unused_imports)]
|
|
#![allow(unused_results)]
|
|
#![allow(unused_results)]
|
|
-//! Generated file from `revision.proto`
|
|
|
|
|
|
+//! Generated file from `model.proto`
|
|
|
|
|
|
/// Generated files are compatible only with the same version
|
|
/// Generated files are compatible only with the same version
|
|
/// of protobuf runtime.
|
|
/// of protobuf runtime.
|
|
// const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_2_22_1;
|
|
// const _PROTOBUF_VERSION_CHECK: () = ::protobuf::VERSION_2_22_1;
|
|
|
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
|
-pub struct RevId {
|
|
|
|
- // message fields
|
|
|
|
- pub value: i64,
|
|
|
|
- // special fields
|
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-impl<'a> ::std::default::Default for &'a RevId {
|
|
|
|
- fn default() -> &'a RevId {
|
|
|
|
- <RevId as ::protobuf::Message>::default_instance()
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-impl RevId {
|
|
|
|
- pub fn new() -> RevId {
|
|
|
|
- ::std::default::Default::default()
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // int64 value = 1;
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- pub fn get_value(&self) -> i64 {
|
|
|
|
- self.value
|
|
|
|
- }
|
|
|
|
- pub fn clear_value(&mut self) {
|
|
|
|
- self.value = 0;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Param is passed by value, moved
|
|
|
|
- pub fn set_value(&mut self, v: i64) {
|
|
|
|
- self.value = v;
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-impl ::protobuf::Message for RevId {
|
|
|
|
- fn is_initialized(&self) -> bool {
|
|
|
|
- true
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> {
|
|
|
|
- while !is.eof()? {
|
|
|
|
- let (field_number, wire_type) = is.read_tag_unpack()?;
|
|
|
|
- match field_number {
|
|
|
|
- 1 => {
|
|
|
|
- if wire_type != ::protobuf::wire_format::WireTypeVarint {
|
|
|
|
- return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
|
|
- }
|
|
|
|
- let tmp = is.read_int64()?;
|
|
|
|
- self.value = tmp;
|
|
|
|
- },
|
|
|
|
- _ => {
|
|
|
|
- ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
|
|
|
|
- },
|
|
|
|
- };
|
|
|
|
- }
|
|
|
|
- ::std::result::Result::Ok(())
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Compute sizes of nested messages
|
|
|
|
- #[allow(unused_variables)]
|
|
|
|
- fn compute_size(&self) -> u32 {
|
|
|
|
- let mut my_size = 0;
|
|
|
|
- if self.value != 0 {
|
|
|
|
- my_size += ::protobuf::rt::value_size(1, self.value, ::protobuf::wire_format::WireTypeVarint);
|
|
|
|
- }
|
|
|
|
- my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
|
|
|
|
- self.cached_size.set(my_size);
|
|
|
|
- my_size
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> {
|
|
|
|
- if self.value != 0 {
|
|
|
|
- os.write_int64(1, self.value)?;
|
|
|
|
- }
|
|
|
|
- os.write_unknown_fields(self.get_unknown_fields())?;
|
|
|
|
- ::std::result::Result::Ok(())
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn get_cached_size(&self) -> u32 {
|
|
|
|
- self.cached_size.get()
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn get_unknown_fields(&self) -> &::protobuf::UnknownFields {
|
|
|
|
- &self.unknown_fields
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
|
|
|
|
- &mut self.unknown_fields
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn as_any(&self) -> &dyn (::std::any::Any) {
|
|
|
|
- self as &dyn (::std::any::Any)
|
|
|
|
- }
|
|
|
|
- fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) {
|
|
|
|
- self as &mut dyn (::std::any::Any)
|
|
|
|
- }
|
|
|
|
- fn into_any(self: ::std::boxed::Box<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
|
- self
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
|
- Self::descriptor_static()
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn new() -> RevId {
|
|
|
|
- RevId::new()
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
|
- static descriptor: ::protobuf::rt::LazyV2<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::LazyV2::INIT;
|
|
|
|
- descriptor.get(|| {
|
|
|
|
- let mut fields = ::std::vec::Vec::new();
|
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt64>(
|
|
|
|
- "value",
|
|
|
|
- |m: &RevId| { &m.value },
|
|
|
|
- |m: &mut RevId| { &mut m.value },
|
|
|
|
- ));
|
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<RevId>(
|
|
|
|
- "RevId",
|
|
|
|
- fields,
|
|
|
|
- file_descriptor_proto()
|
|
|
|
- )
|
|
|
|
- })
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn default_instance() -> &'static RevId {
|
|
|
|
- static instance: ::protobuf::rt::LazyV2<RevId> = ::protobuf::rt::LazyV2::INIT;
|
|
|
|
- instance.get(RevId::new)
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-impl ::protobuf::Clear for RevId {
|
|
|
|
- fn clear(&mut self) {
|
|
|
|
- self.value = 0;
|
|
|
|
- self.unknown_fields.clear();
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-impl ::std::fmt::Debug for RevId {
|
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-impl ::protobuf::reflect::ProtobufValue for RevId {
|
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
#[derive(PartialEq,Clone,Default)]
|
|
pub struct Revision {
|
|
pub struct Revision {
|
|
// message fields
|
|
// message fields
|
|
@@ -519,6 +367,158 @@ impl ::protobuf::reflect::ProtobufValue for Revision {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+#[derive(PartialEq,Clone,Default)]
|
|
|
|
+pub struct RevId {
|
|
|
|
+ // message fields
|
|
|
|
+ pub value: i64,
|
|
|
|
+ // special fields
|
|
|
|
+ pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
|
+ pub cached_size: ::protobuf::CachedSize,
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl<'a> ::std::default::Default for &'a RevId {
|
|
|
|
+ fn default() -> &'a RevId {
|
|
|
|
+ <RevId as ::protobuf::Message>::default_instance()
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl RevId {
|
|
|
|
+ pub fn new() -> RevId {
|
|
|
|
+ ::std::default::Default::default()
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // int64 value = 1;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ pub fn get_value(&self) -> i64 {
|
|
|
|
+ self.value
|
|
|
|
+ }
|
|
|
|
+ pub fn clear_value(&mut self) {
|
|
|
|
+ self.value = 0;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Param is passed by value, moved
|
|
|
|
+ pub fn set_value(&mut self, v: i64) {
|
|
|
|
+ self.value = v;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl ::protobuf::Message for RevId {
|
|
|
|
+ fn is_initialized(&self) -> bool {
|
|
|
|
+ true
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> {
|
|
|
|
+ while !is.eof()? {
|
|
|
|
+ let (field_number, wire_type) = is.read_tag_unpack()?;
|
|
|
|
+ match field_number {
|
|
|
|
+ 1 => {
|
|
|
|
+ if wire_type != ::protobuf::wire_format::WireTypeVarint {
|
|
|
|
+ return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
|
|
+ }
|
|
|
|
+ let tmp = is.read_int64()?;
|
|
|
|
+ self.value = tmp;
|
|
|
|
+ },
|
|
|
|
+ _ => {
|
|
|
|
+ ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
|
|
|
|
+ },
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+ ::std::result::Result::Ok(())
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Compute sizes of nested messages
|
|
|
|
+ #[allow(unused_variables)]
|
|
|
|
+ fn compute_size(&self) -> u32 {
|
|
|
|
+ let mut my_size = 0;
|
|
|
|
+ if self.value != 0 {
|
|
|
|
+ my_size += ::protobuf::rt::value_size(1, self.value, ::protobuf::wire_format::WireTypeVarint);
|
|
|
|
+ }
|
|
|
|
+ my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
|
|
|
|
+ self.cached_size.set(my_size);
|
|
|
|
+ my_size
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> {
|
|
|
|
+ if self.value != 0 {
|
|
|
|
+ os.write_int64(1, self.value)?;
|
|
|
|
+ }
|
|
|
|
+ os.write_unknown_fields(self.get_unknown_fields())?;
|
|
|
|
+ ::std::result::Result::Ok(())
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn get_cached_size(&self) -> u32 {
|
|
|
|
+ self.cached_size.get()
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn get_unknown_fields(&self) -> &::protobuf::UnknownFields {
|
|
|
|
+ &self.unknown_fields
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
|
|
|
|
+ &mut self.unknown_fields
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn as_any(&self) -> &dyn (::std::any::Any) {
|
|
|
|
+ self as &dyn (::std::any::Any)
|
|
|
|
+ }
|
|
|
|
+ fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) {
|
|
|
|
+ self as &mut dyn (::std::any::Any)
|
|
|
|
+ }
|
|
|
|
+ fn into_any(self: ::std::boxed::Box<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
|
+ self
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
|
+ Self::descriptor_static()
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn new() -> RevId {
|
|
|
|
+ RevId::new()
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
|
+ static descriptor: ::protobuf::rt::LazyV2<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::LazyV2::INIT;
|
|
|
|
+ descriptor.get(|| {
|
|
|
|
+ let mut fields = ::std::vec::Vec::new();
|
|
|
|
+ fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt64>(
|
|
|
|
+ "value",
|
|
|
|
+ |m: &RevId| { &m.value },
|
|
|
|
+ |m: &mut RevId| { &mut m.value },
|
|
|
|
+ ));
|
|
|
|
+ ::protobuf::reflect::MessageDescriptor::new_pb_name::<RevId>(
|
|
|
|
+ "RevId",
|
|
|
|
+ fields,
|
|
|
|
+ file_descriptor_proto()
|
|
|
|
+ )
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn default_instance() -> &'static RevId {
|
|
|
|
+ static instance: ::protobuf::rt::LazyV2<RevId> = ::protobuf::rt::LazyV2::INIT;
|
|
|
|
+ instance.get(RevId::new)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl ::protobuf::Clear for RevId {
|
|
|
|
+ fn clear(&mut self) {
|
|
|
|
+ self.value = 0;
|
|
|
|
+ self.unknown_fields.clear();
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl ::std::fmt::Debug for RevId {
|
|
|
|
+ fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
|
+ ::protobuf::text_format::fmt(self, f)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl ::protobuf::reflect::ProtobufValue for RevId {
|
|
|
|
+ fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
|
+ ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
#[derive(PartialEq,Clone,Default)]
|
|
#[derive(PartialEq,Clone,Default)]
|
|
pub struct RevisionRange {
|
|
pub struct RevisionRange {
|
|
// message fields
|
|
// message fields
|
|
@@ -799,53 +799,52 @@ impl ::protobuf::reflect::ProtobufValue for RevType {
|
|
}
|
|
}
|
|
|
|
|
|
static file_descriptor_proto_data: &'static [u8] = b"\
|
|
static file_descriptor_proto_data: &'static [u8] = b"\
|
|
- \n\x0erevision.proto\"\x1d\n\x05RevId\x12\x14\n\x05value\x18\x01\x20\x01\
|
|
|
|
- (\x03R\x05value\"\xa3\x01\n\x08Revision\x12\x1e\n\x0bbase_rev_id\x18\x01\
|
|
|
|
- \x20\x01(\x03R\tbaseRevId\x12\x15\n\x06rev_id\x18\x02\x20\x01(\x03R\x05r\
|
|
|
|
- evId\x12\x1d\n\ndelta_data\x18\x03\x20\x01(\x0cR\tdeltaData\x12\x10\n\
|
|
|
|
- \x03md5\x18\x04\x20\x01(\tR\x03md5\x12\x15\n\x06doc_id\x18\x05\x20\x01(\
|
|
|
|
- \tR\x05docId\x12\x18\n\x02ty\x18\x06\x20\x01(\x0e2\x08.RevTypeR\x02ty\"N\
|
|
|
|
- \n\rRevisionRange\x12\x15\n\x06doc_id\x18\x01\x20\x01(\tR\x05docId\x12\
|
|
|
|
- \x14\n\x05start\x18\x02\x20\x01(\x03R\x05start\x12\x10\n\x03end\x18\x03\
|
|
|
|
- \x20\x01(\x03R\x03end*\x20\n\x07RevType\x12\t\n\x05Local\x10\0\x12\n\n\
|
|
|
|
- \x06Remote\x10\x01J\xea\x05\n\x06\x12\x04\0\0\x15\x01\n\x08\n\x01\x0c\
|
|
|
|
- \x12\x03\0\0\x12\n\n\n\x02\x04\0\x12\x04\x02\0\x04\x01\n\n\n\x03\x04\0\
|
|
|
|
- \x01\x12\x03\x02\x08\r\n\x0b\n\x04\x04\0\x02\0\x12\x03\x03\x04\x14\n\x0c\
|
|
|
|
- \n\x05\x04\0\x02\0\x05\x12\x03\x03\x04\t\n\x0c\n\x05\x04\0\x02\0\x01\x12\
|
|
|
|
- \x03\x03\n\x0f\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03\x03\x12\x13\n\n\n\x02\
|
|
|
|
- \x04\x01\x12\x04\x05\0\x0c\x01\n\n\n\x03\x04\x01\x01\x12\x03\x05\x08\x10\
|
|
|
|
- \n\x0b\n\x04\x04\x01\x02\0\x12\x03\x06\x04\x1a\n\x0c\n\x05\x04\x01\x02\0\
|
|
|
|
- \x05\x12\x03\x06\x04\t\n\x0c\n\x05\x04\x01\x02\0\x01\x12\x03\x06\n\x15\n\
|
|
|
|
- \x0c\n\x05\x04\x01\x02\0\x03\x12\x03\x06\x18\x19\n\x0b\n\x04\x04\x01\x02\
|
|
|
|
- \x01\x12\x03\x07\x04\x15\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\x03\x07\x04\
|
|
|
|
- \t\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03\x07\n\x10\n\x0c\n\x05\x04\x01\
|
|
|
|
- \x02\x01\x03\x12\x03\x07\x13\x14\n\x0b\n\x04\x04\x01\x02\x02\x12\x03\x08\
|
|
|
|
- \x04\x19\n\x0c\n\x05\x04\x01\x02\x02\x05\x12\x03\x08\x04\t\n\x0c\n\x05\
|
|
|
|
- \x04\x01\x02\x02\x01\x12\x03\x08\n\x14\n\x0c\n\x05\x04\x01\x02\x02\x03\
|
|
|
|
- \x12\x03\x08\x17\x18\n\x0b\n\x04\x04\x01\x02\x03\x12\x03\t\x04\x13\n\x0c\
|
|
|
|
- \n\x05\x04\x01\x02\x03\x05\x12\x03\t\x04\n\n\x0c\n\x05\x04\x01\x02\x03\
|
|
|
|
- \x01\x12\x03\t\x0b\x0e\n\x0c\n\x05\x04\x01\x02\x03\x03\x12\x03\t\x11\x12\
|
|
|
|
- \n\x0b\n\x04\x04\x01\x02\x04\x12\x03\n\x04\x16\n\x0c\n\x05\x04\x01\x02\
|
|
|
|
- \x04\x05\x12\x03\n\x04\n\n\x0c\n\x05\x04\x01\x02\x04\x01\x12\x03\n\x0b\
|
|
|
|
- \x11\n\x0c\n\x05\x04\x01\x02\x04\x03\x12\x03\n\x14\x15\n\x0b\n\x04\x04\
|
|
|
|
- \x01\x02\x05\x12\x03\x0b\x04\x13\n\x0c\n\x05\x04\x01\x02\x05\x06\x12\x03\
|
|
|
|
- \x0b\x04\x0b\n\x0c\n\x05\x04\x01\x02\x05\x01\x12\x03\x0b\x0c\x0e\n\x0c\n\
|
|
|
|
- \x05\x04\x01\x02\x05\x03\x12\x03\x0b\x11\x12\n\n\n\x02\x04\x02\x12\x04\r\
|
|
|
|
- \0\x11\x01\n\n\n\x03\x04\x02\x01\x12\x03\r\x08\x15\n\x0b\n\x04\x04\x02\
|
|
|
|
- \x02\0\x12\x03\x0e\x04\x16\n\x0c\n\x05\x04\x02\x02\0\x05\x12\x03\x0e\x04\
|
|
|
|
- \n\n\x0c\n\x05\x04\x02\x02\0\x01\x12\x03\x0e\x0b\x11\n\x0c\n\x05\x04\x02\
|
|
|
|
- \x02\0\x03\x12\x03\x0e\x14\x15\n\x0b\n\x04\x04\x02\x02\x01\x12\x03\x0f\
|
|
|
|
- \x04\x14\n\x0c\n\x05\x04\x02\x02\x01\x05\x12\x03\x0f\x04\t\n\x0c\n\x05\
|
|
|
|
- \x04\x02\x02\x01\x01\x12\x03\x0f\n\x0f\n\x0c\n\x05\x04\x02\x02\x01\x03\
|
|
|
|
- \x12\x03\x0f\x12\x13\n\x0b\n\x04\x04\x02\x02\x02\x12\x03\x10\x04\x12\n\
|
|
|
|
- \x0c\n\x05\x04\x02\x02\x02\x05\x12\x03\x10\x04\t\n\x0c\n\x05\x04\x02\x02\
|
|
|
|
- \x02\x01\x12\x03\x10\n\r\n\x0c\n\x05\x04\x02\x02\x02\x03\x12\x03\x10\x10\
|
|
|
|
- \x11\n\n\n\x02\x05\0\x12\x04\x12\0\x15\x01\n\n\n\x03\x05\0\x01\x12\x03\
|
|
|
|
- \x12\x05\x0c\n\x0b\n\x04\x05\0\x02\0\x12\x03\x13\x04\x0e\n\x0c\n\x05\x05\
|
|
|
|
- \0\x02\0\x01\x12\x03\x13\x04\t\n\x0c\n\x05\x05\0\x02\0\x02\x12\x03\x13\
|
|
|
|
- \x0c\r\n\x0b\n\x04\x05\0\x02\x01\x12\x03\x14\x04\x0f\n\x0c\n\x05\x05\0\
|
|
|
|
- \x02\x01\x01\x12\x03\x14\x04\n\n\x0c\n\x05\x05\0\x02\x01\x02\x12\x03\x14\
|
|
|
|
- \r\x0eb\x06proto3\
|
|
|
|
|
|
+ \n\x0bmodel.proto\"\xa3\x01\n\x08Revision\x12\x1e\n\x0bbase_rev_id\x18\
|
|
|
|
+ \x01\x20\x01(\x03R\tbaseRevId\x12\x15\n\x06rev_id\x18\x02\x20\x01(\x03R\
|
|
|
|
+ \x05revId\x12\x1d\n\ndelta_data\x18\x03\x20\x01(\x0cR\tdeltaData\x12\x10\
|
|
|
|
+ \n\x03md5\x18\x04\x20\x01(\tR\x03md5\x12\x15\n\x06doc_id\x18\x05\x20\x01\
|
|
|
|
+ (\tR\x05docId\x12\x18\n\x02ty\x18\x06\x20\x01(\x0e2\x08.RevTypeR\x02ty\"\
|
|
|
|
+ \x1d\n\x05RevId\x12\x14\n\x05value\x18\x01\x20\x01(\x03R\x05value\"N\n\r\
|
|
|
|
+ RevisionRange\x12\x15\n\x06doc_id\x18\x01\x20\x01(\tR\x05docId\x12\x14\n\
|
|
|
|
+ \x05start\x18\x02\x20\x01(\x03R\x05start\x12\x10\n\x03end\x18\x03\x20\
|
|
|
|
+ \x01(\x03R\x03end*\x20\n\x07RevType\x12\t\n\x05Local\x10\0\x12\n\n\x06Re\
|
|
|
|
+ mote\x10\x01J\xea\x05\n\x06\x12\x04\0\0\x15\x01\n\x08\n\x01\x0c\x12\x03\
|
|
|
|
+ \0\0\x12\n\n\n\x02\x04\0\x12\x04\x02\0\t\x01\n\n\n\x03\x04\0\x01\x12\x03\
|
|
|
|
+ \x02\x08\x10\n\x0b\n\x04\x04\0\x02\0\x12\x03\x03\x04\x1a\n\x0c\n\x05\x04\
|
|
|
|
+ \0\x02\0\x05\x12\x03\x03\x04\t\n\x0c\n\x05\x04\0\x02\0\x01\x12\x03\x03\n\
|
|
|
|
+ \x15\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03\x03\x18\x19\n\x0b\n\x04\x04\0\
|
|
|
|
+ \x02\x01\x12\x03\x04\x04\x15\n\x0c\n\x05\x04\0\x02\x01\x05\x12\x03\x04\
|
|
|
|
+ \x04\t\n\x0c\n\x05\x04\0\x02\x01\x01\x12\x03\x04\n\x10\n\x0c\n\x05\x04\0\
|
|
|
|
+ \x02\x01\x03\x12\x03\x04\x13\x14\n\x0b\n\x04\x04\0\x02\x02\x12\x03\x05\
|
|
|
|
+ \x04\x19\n\x0c\n\x05\x04\0\x02\x02\x05\x12\x03\x05\x04\t\n\x0c\n\x05\x04\
|
|
|
|
+ \0\x02\x02\x01\x12\x03\x05\n\x14\n\x0c\n\x05\x04\0\x02\x02\x03\x12\x03\
|
|
|
|
+ \x05\x17\x18\n\x0b\n\x04\x04\0\x02\x03\x12\x03\x06\x04\x13\n\x0c\n\x05\
|
|
|
|
+ \x04\0\x02\x03\x05\x12\x03\x06\x04\n\n\x0c\n\x05\x04\0\x02\x03\x01\x12\
|
|
|
|
+ \x03\x06\x0b\x0e\n\x0c\n\x05\x04\0\x02\x03\x03\x12\x03\x06\x11\x12\n\x0b\
|
|
|
|
+ \n\x04\x04\0\x02\x04\x12\x03\x07\x04\x16\n\x0c\n\x05\x04\0\x02\x04\x05\
|
|
|
|
+ \x12\x03\x07\x04\n\n\x0c\n\x05\x04\0\x02\x04\x01\x12\x03\x07\x0b\x11\n\
|
|
|
|
+ \x0c\n\x05\x04\0\x02\x04\x03\x12\x03\x07\x14\x15\n\x0b\n\x04\x04\0\x02\
|
|
|
|
+ \x05\x12\x03\x08\x04\x13\n\x0c\n\x05\x04\0\x02\x05\x06\x12\x03\x08\x04\
|
|
|
|
+ \x0b\n\x0c\n\x05\x04\0\x02\x05\x01\x12\x03\x08\x0c\x0e\n\x0c\n\x05\x04\0\
|
|
|
|
+ \x02\x05\x03\x12\x03\x08\x11\x12\n\n\n\x02\x04\x01\x12\x04\n\0\x0c\x01\n\
|
|
|
|
+ \n\n\x03\x04\x01\x01\x12\x03\n\x08\r\n\x0b\n\x04\x04\x01\x02\0\x12\x03\
|
|
|
|
+ \x0b\x04\x14\n\x0c\n\x05\x04\x01\x02\0\x05\x12\x03\x0b\x04\t\n\x0c\n\x05\
|
|
|
|
+ \x04\x01\x02\0\x01\x12\x03\x0b\n\x0f\n\x0c\n\x05\x04\x01\x02\0\x03\x12\
|
|
|
|
+ \x03\x0b\x12\x13\n\n\n\x02\x04\x02\x12\x04\r\0\x11\x01\n\n\n\x03\x04\x02\
|
|
|
|
+ \x01\x12\x03\r\x08\x15\n\x0b\n\x04\x04\x02\x02\0\x12\x03\x0e\x04\x16\n\
|
|
|
|
+ \x0c\n\x05\x04\x02\x02\0\x05\x12\x03\x0e\x04\n\n\x0c\n\x05\x04\x02\x02\0\
|
|
|
|
+ \x01\x12\x03\x0e\x0b\x11\n\x0c\n\x05\x04\x02\x02\0\x03\x12\x03\x0e\x14\
|
|
|
|
+ \x15\n\x0b\n\x04\x04\x02\x02\x01\x12\x03\x0f\x04\x14\n\x0c\n\x05\x04\x02\
|
|
|
|
+ \x02\x01\x05\x12\x03\x0f\x04\t\n\x0c\n\x05\x04\x02\x02\x01\x01\x12\x03\
|
|
|
|
+ \x0f\n\x0f\n\x0c\n\x05\x04\x02\x02\x01\x03\x12\x03\x0f\x12\x13\n\x0b\n\
|
|
|
|
+ \x04\x04\x02\x02\x02\x12\x03\x10\x04\x12\n\x0c\n\x05\x04\x02\x02\x02\x05\
|
|
|
|
+ \x12\x03\x10\x04\t\n\x0c\n\x05\x04\x02\x02\x02\x01\x12\x03\x10\n\r\n\x0c\
|
|
|
|
+ \n\x05\x04\x02\x02\x02\x03\x12\x03\x10\x10\x11\n\n\n\x02\x05\0\x12\x04\
|
|
|
|
+ \x12\0\x15\x01\n\n\n\x03\x05\0\x01\x12\x03\x12\x05\x0c\n\x0b\n\x04\x05\0\
|
|
|
|
+ \x02\0\x12\x03\x13\x04\x0e\n\x0c\n\x05\x05\0\x02\0\x01\x12\x03\x13\x04\t\
|
|
|
|
+ \n\x0c\n\x05\x05\0\x02\0\x02\x12\x03\x13\x0c\r\n\x0b\n\x04\x05\0\x02\x01\
|
|
|
|
+ \x12\x03\x14\x04\x0f\n\x0c\n\x05\x05\0\x02\x01\x01\x12\x03\x14\x04\n\n\
|
|
|
|
+ \x0c\n\x05\x05\0\x02\x01\x02\x12\x03\x14\r\x0eb\x06proto3\
|
|
";
|
|
";
|
|
|
|
|
|
static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;
|
|
static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;
|