|
@@ -229,6 +229,7 @@ pub struct Doc {
|
|
|
// message fields
|
|
|
pub id: ::std::string::String,
|
|
|
pub data: ::std::vec::Vec<u8>,
|
|
|
+ pub revision: i64,
|
|
|
// special fields
|
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
@@ -296,6 +297,21 @@ impl Doc {
|
|
|
pub fn take_data(&mut self) -> ::std::vec::Vec<u8> {
|
|
|
::std::mem::replace(&mut self.data, ::std::vec::Vec::new())
|
|
|
}
|
|
|
+
|
|
|
+ // int64 revision = 3;
|
|
|
+
|
|
|
+
|
|
|
+ pub fn get_revision(&self) -> i64 {
|
|
|
+ self.revision
|
|
|
+ }
|
|
|
+ pub fn clear_revision(&mut self) {
|
|
|
+ self.revision = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ // Param is passed by value, moved
|
|
|
+ pub fn set_revision(&mut self, v: i64) {
|
|
|
+ self.revision = v;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
impl ::protobuf::Message for Doc {
|
|
@@ -313,6 +329,13 @@ impl ::protobuf::Message for Doc {
|
|
|
2 => {
|
|
|
::protobuf::rt::read_singular_proto3_bytes_into(wire_type, is, &mut self.data)?;
|
|
|
},
|
|
|
+ 3 => {
|
|
|
+ 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.revision = tmp;
|
|
|
+ },
|
|
|
_ => {
|
|
|
::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
|
|
|
},
|
|
@@ -331,6 +354,9 @@ impl ::protobuf::Message for Doc {
|
|
|
if !self.data.is_empty() {
|
|
|
my_size += ::protobuf::rt::bytes_size(2, &self.data);
|
|
|
}
|
|
|
+ if self.revision != 0 {
|
|
|
+ my_size += ::protobuf::rt::value_size(3, self.revision, ::protobuf::wire_format::WireTypeVarint);
|
|
|
+ }
|
|
|
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
|
|
|
self.cached_size.set(my_size);
|
|
|
my_size
|
|
@@ -343,6 +369,9 @@ impl ::protobuf::Message for Doc {
|
|
|
if !self.data.is_empty() {
|
|
|
os.write_bytes(2, &self.data)?;
|
|
|
}
|
|
|
+ if self.revision != 0 {
|
|
|
+ os.write_int64(3, self.revision)?;
|
|
|
+ }
|
|
|
os.write_unknown_fields(self.get_unknown_fields())?;
|
|
|
::std::result::Result::Ok(())
|
|
|
}
|
|
@@ -391,6 +420,11 @@ impl ::protobuf::Message for Doc {
|
|
|
|m: &Doc| { &m.data },
|
|
|
|m: &mut Doc| { &mut m.data },
|
|
|
));
|
|
|
+ fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeInt64>(
|
|
|
+ "revision",
|
|
|
+ |m: &Doc| { &m.revision },
|
|
|
+ |m: &mut Doc| { &mut m.revision },
|
|
|
+ ));
|
|
|
::protobuf::reflect::MessageDescriptor::new_pb_name::<Doc>(
|
|
|
"Doc",
|
|
|
fields,
|
|
@@ -409,6 +443,7 @@ impl ::protobuf::Clear for Doc {
|
|
|
fn clear(&mut self) {
|
|
|
self.id.clear();
|
|
|
self.data.clear();
|
|
|
+ self.revision = 0;
|
|
|
self.unknown_fields.clear();
|
|
|
}
|
|
|
}
|
|
@@ -426,23 +461,23 @@ impl ::protobuf::reflect::ProtobufValue for Doc {
|
|
|
}
|
|
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct SaveDocParams {
|
|
|
+pub struct UpdateDocParams {
|
|
|
// message fields
|
|
|
pub id: ::std::string::String,
|
|
|
- pub data: ::std::vec::Vec<u8>,
|
|
|
+ pub doc_data: ::std::vec::Vec<u8>,
|
|
|
// special fields
|
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
|
}
|
|
|
|
|
|
-impl<'a> ::std::default::Default for &'a SaveDocParams {
|
|
|
- fn default() -> &'a SaveDocParams {
|
|
|
- <SaveDocParams as ::protobuf::Message>::default_instance()
|
|
|
+impl<'a> ::std::default::Default for &'a UpdateDocParams {
|
|
|
+ fn default() -> &'a UpdateDocParams {
|
|
|
+ <UpdateDocParams as ::protobuf::Message>::default_instance()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl SaveDocParams {
|
|
|
- pub fn new() -> SaveDocParams {
|
|
|
+impl UpdateDocParams {
|
|
|
+ pub fn new() -> UpdateDocParams {
|
|
|
::std::default::Default::default()
|
|
|
}
|
|
|
|
|
@@ -472,34 +507,34 @@ impl SaveDocParams {
|
|
|
::std::mem::replace(&mut self.id, ::std::string::String::new())
|
|
|
}
|
|
|
|
|
|
- // bytes data = 2;
|
|
|
+ // bytes doc_data = 2;
|
|
|
|
|
|
|
|
|
- pub fn get_data(&self) -> &[u8] {
|
|
|
- &self.data
|
|
|
+ pub fn get_doc_data(&self) -> &[u8] {
|
|
|
+ &self.doc_data
|
|
|
}
|
|
|
- pub fn clear_data(&mut self) {
|
|
|
- self.data.clear();
|
|
|
+ pub fn clear_doc_data(&mut self) {
|
|
|
+ self.doc_data.clear();
|
|
|
}
|
|
|
|
|
|
// Param is passed by value, moved
|
|
|
- pub fn set_data(&mut self, v: ::std::vec::Vec<u8>) {
|
|
|
- self.data = v;
|
|
|
+ pub fn set_doc_data(&mut self, v: ::std::vec::Vec<u8>) {
|
|
|
+ self.doc_data = v;
|
|
|
}
|
|
|
|
|
|
// Mutable pointer to the field.
|
|
|
// If field is not initialized, it is initialized with default value first.
|
|
|
- pub fn mut_data(&mut self) -> &mut ::std::vec::Vec<u8> {
|
|
|
- &mut self.data
|
|
|
+ pub fn mut_doc_data(&mut self) -> &mut ::std::vec::Vec<u8> {
|
|
|
+ &mut self.doc_data
|
|
|
}
|
|
|
|
|
|
// Take field
|
|
|
- pub fn take_data(&mut self) -> ::std::vec::Vec<u8> {
|
|
|
- ::std::mem::replace(&mut self.data, ::std::vec::Vec::new())
|
|
|
+ pub fn take_doc_data(&mut self) -> ::std::vec::Vec<u8> {
|
|
|
+ ::std::mem::replace(&mut self.doc_data, ::std::vec::Vec::new())
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Message for SaveDocParams {
|
|
|
+impl ::protobuf::Message for UpdateDocParams {
|
|
|
fn is_initialized(&self) -> bool {
|
|
|
true
|
|
|
}
|
|
@@ -512,7 +547,7 @@ impl ::protobuf::Message for SaveDocParams {
|
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.id)?;
|
|
|
},
|
|
|
2 => {
|
|
|
- ::protobuf::rt::read_singular_proto3_bytes_into(wire_type, is, &mut self.data)?;
|
|
|
+ ::protobuf::rt::read_singular_proto3_bytes_into(wire_type, is, &mut self.doc_data)?;
|
|
|
},
|
|
|
_ => {
|
|
|
::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
|
|
@@ -529,8 +564,8 @@ impl ::protobuf::Message for SaveDocParams {
|
|
|
if !self.id.is_empty() {
|
|
|
my_size += ::protobuf::rt::string_size(1, &self.id);
|
|
|
}
|
|
|
- if !self.data.is_empty() {
|
|
|
- my_size += ::protobuf::rt::bytes_size(2, &self.data);
|
|
|
+ if !self.doc_data.is_empty() {
|
|
|
+ my_size += ::protobuf::rt::bytes_size(2, &self.doc_data);
|
|
|
}
|
|
|
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
|
|
|
self.cached_size.set(my_size);
|
|
@@ -541,8 +576,8 @@ impl ::protobuf::Message for SaveDocParams {
|
|
|
if !self.id.is_empty() {
|
|
|
os.write_string(1, &self.id)?;
|
|
|
}
|
|
|
- if !self.data.is_empty() {
|
|
|
- os.write_bytes(2, &self.data)?;
|
|
|
+ if !self.doc_data.is_empty() {
|
|
|
+ os.write_bytes(2, &self.doc_data)?;
|
|
|
}
|
|
|
os.write_unknown_fields(self.get_unknown_fields())?;
|
|
|
::std::result::Result::Ok(())
|
|
@@ -574,8 +609,8 @@ impl ::protobuf::Message for SaveDocParams {
|
|
|
Self::descriptor_static()
|
|
|
}
|
|
|
|
|
|
- fn new() -> SaveDocParams {
|
|
|
- SaveDocParams::new()
|
|
|
+ fn new() -> UpdateDocParams {
|
|
|
+ UpdateDocParams::new()
|
|
|
}
|
|
|
|
|
|
fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
@@ -584,50 +619,50 @@ impl ::protobuf::Message for SaveDocParams {
|
|
|
let mut fields = ::std::vec::Vec::new();
|
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
"id",
|
|
|
- |m: &SaveDocParams| { &m.id },
|
|
|
- |m: &mut SaveDocParams| { &mut m.id },
|
|
|
+ |m: &UpdateDocParams| { &m.id },
|
|
|
+ |m: &mut UpdateDocParams| { &mut m.id },
|
|
|
));
|
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>(
|
|
|
- "data",
|
|
|
- |m: &SaveDocParams| { &m.data },
|
|
|
- |m: &mut SaveDocParams| { &mut m.data },
|
|
|
+ "doc_data",
|
|
|
+ |m: &UpdateDocParams| { &m.doc_data },
|
|
|
+ |m: &mut UpdateDocParams| { &mut m.doc_data },
|
|
|
));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<SaveDocParams>(
|
|
|
- "SaveDocParams",
|
|
|
+ ::protobuf::reflect::MessageDescriptor::new_pb_name::<UpdateDocParams>(
|
|
|
+ "UpdateDocParams",
|
|
|
fields,
|
|
|
file_descriptor_proto()
|
|
|
)
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- fn default_instance() -> &'static SaveDocParams {
|
|
|
- static instance: ::protobuf::rt::LazyV2<SaveDocParams> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(SaveDocParams::new)
|
|
|
+ fn default_instance() -> &'static UpdateDocParams {
|
|
|
+ static instance: ::protobuf::rt::LazyV2<UpdateDocParams> = ::protobuf::rt::LazyV2::INIT;
|
|
|
+ instance.get(UpdateDocParams::new)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Clear for SaveDocParams {
|
|
|
+impl ::protobuf::Clear for UpdateDocParams {
|
|
|
fn clear(&mut self) {
|
|
|
self.id.clear();
|
|
|
- self.data.clear();
|
|
|
+ self.doc_data.clear();
|
|
|
self.unknown_fields.clear();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::std::fmt::Debug for SaveDocParams {
|
|
|
+impl ::std::fmt::Debug for UpdateDocParams {
|
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
::protobuf::text_format::fmt(self, f)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::reflect::ProtobufValue for SaveDocParams {
|
|
|
+impl ::protobuf::reflect::ProtobufValue for UpdateDocParams {
|
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
|
-pub struct ApplyChangesetParams {
|
|
|
+pub struct DocChangeset {
|
|
|
// message fields
|
|
|
pub id: ::std::string::String,
|
|
|
pub data: ::std::vec::Vec<u8>,
|
|
@@ -636,14 +671,14 @@ pub struct ApplyChangesetParams {
|
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
|
}
|
|
|
|
|
|
-impl<'a> ::std::default::Default for &'a ApplyChangesetParams {
|
|
|
- fn default() -> &'a ApplyChangesetParams {
|
|
|
- <ApplyChangesetParams as ::protobuf::Message>::default_instance()
|
|
|
+impl<'a> ::std::default::Default for &'a DocChangeset {
|
|
|
+ fn default() -> &'a DocChangeset {
|
|
|
+ <DocChangeset as ::protobuf::Message>::default_instance()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ApplyChangesetParams {
|
|
|
- pub fn new() -> ApplyChangesetParams {
|
|
|
+impl DocChangeset {
|
|
|
+ pub fn new() -> DocChangeset {
|
|
|
::std::default::Default::default()
|
|
|
}
|
|
|
|
|
@@ -700,7 +735,7 @@ impl ApplyChangesetParams {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Message for ApplyChangesetParams {
|
|
|
+impl ::protobuf::Message for DocChangeset {
|
|
|
fn is_initialized(&self) -> bool {
|
|
|
true
|
|
|
}
|
|
@@ -775,8 +810,8 @@ impl ::protobuf::Message for ApplyChangesetParams {
|
|
|
Self::descriptor_static()
|
|
|
}
|
|
|
|
|
|
- fn new() -> ApplyChangesetParams {
|
|
|
- ApplyChangesetParams::new()
|
|
|
+ fn new() -> DocChangeset {
|
|
|
+ DocChangeset::new()
|
|
|
}
|
|
|
|
|
|
fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
@@ -785,29 +820,29 @@ impl ::protobuf::Message for ApplyChangesetParams {
|
|
|
let mut fields = ::std::vec::Vec::new();
|
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
"id",
|
|
|
- |m: &ApplyChangesetParams| { &m.id },
|
|
|
- |m: &mut ApplyChangesetParams| { &mut m.id },
|
|
|
+ |m: &DocChangeset| { &m.id },
|
|
|
+ |m: &mut DocChangeset| { &mut m.id },
|
|
|
));
|
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBytes>(
|
|
|
"data",
|
|
|
- |m: &ApplyChangesetParams| { &m.data },
|
|
|
- |m: &mut ApplyChangesetParams| { &mut m.data },
|
|
|
+ |m: &DocChangeset| { &m.data },
|
|
|
+ |m: &mut DocChangeset| { &mut m.data },
|
|
|
));
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<ApplyChangesetParams>(
|
|
|
- "ApplyChangesetParams",
|
|
|
+ ::protobuf::reflect::MessageDescriptor::new_pb_name::<DocChangeset>(
|
|
|
+ "DocChangeset",
|
|
|
fields,
|
|
|
file_descriptor_proto()
|
|
|
)
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- fn default_instance() -> &'static ApplyChangesetParams {
|
|
|
- static instance: ::protobuf::rt::LazyV2<ApplyChangesetParams> = ::protobuf::rt::LazyV2::INIT;
|
|
|
- instance.get(ApplyChangesetParams::new)
|
|
|
+ fn default_instance() -> &'static DocChangeset {
|
|
|
+ static instance: ::protobuf::rt::LazyV2<DocChangeset> = ::protobuf::rt::LazyV2::INIT;
|
|
|
+ instance.get(DocChangeset::new)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::Clear for ApplyChangesetParams {
|
|
|
+impl ::protobuf::Clear for DocChangeset {
|
|
|
fn clear(&mut self) {
|
|
|
self.id.clear();
|
|
|
self.data.clear();
|
|
@@ -815,13 +850,13 @@ impl ::protobuf::Clear for ApplyChangesetParams {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::std::fmt::Debug for ApplyChangesetParams {
|
|
|
+impl ::std::fmt::Debug for DocChangeset {
|
|
|
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
::protobuf::text_format::fmt(self, f)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl ::protobuf::reflect::ProtobufValue for ApplyChangesetParams {
|
|
|
+impl ::protobuf::reflect::ProtobufValue for DocChangeset {
|
|
|
fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
}
|
|
@@ -988,44 +1023,48 @@ impl ::protobuf::reflect::ProtobufValue for QueryDocParams {
|
|
|
|
|
|
static file_descriptor_proto_data: &'static [u8] = b"\
|
|
|
\n\tdoc.proto\"5\n\x0fCreateDocParams\x12\x0e\n\x02id\x18\x01\x20\x01(\t\
|
|
|
- R\x02id\x12\x12\n\x04data\x18\x02\x20\x01(\x0cR\x04data\")\n\x03Doc\x12\
|
|
|
+ R\x02id\x12\x12\n\x04data\x18\x02\x20\x01(\x0cR\x04data\"E\n\x03Doc\x12\
|
|
|
+ \x0e\n\x02id\x18\x01\x20\x01(\tR\x02id\x12\x12\n\x04data\x18\x02\x20\x01\
|
|
|
+ (\x0cR\x04data\x12\x1a\n\x08revision\x18\x03\x20\x01(\x03R\x08revision\"\
|
|
|
+ <\n\x0fUpdateDocParams\x12\x0e\n\x02id\x18\x01\x20\x01(\tR\x02id\x12\x19\
|
|
|
+ \n\x08doc_data\x18\x02\x20\x01(\x0cR\x07docData\"2\n\x0cDocChangeset\x12\
|
|
|
\x0e\n\x02id\x18\x01\x20\x01(\tR\x02id\x12\x12\n\x04data\x18\x02\x20\x01\
|
|
|
- (\x0cR\x04data\"3\n\rSaveDocParams\x12\x0e\n\x02id\x18\x01\x20\x01(\tR\
|
|
|
- \x02id\x12\x12\n\x04data\x18\x02\x20\x01(\x0cR\x04data\":\n\x14ApplyChan\
|
|
|
- gesetParams\x12\x0e\n\x02id\x18\x01\x20\x01(\tR\x02id\x12\x12\n\x04data\
|
|
|
- \x18\x02\x20\x01(\x0cR\x04data\"'\n\x0eQueryDocParams\x12\x15\n\x06doc_i\
|
|
|
- d\x18\x01\x20\x01(\tR\x05docIdJ\xf9\x04\n\x06\x12\x04\0\0\x14\x01\n\x08\
|
|
|
- \n\x01\x0c\x12\x03\0\0\x12\n\n\n\x02\x04\0\x12\x04\x02\0\x05\x01\n\n\n\
|
|
|
- \x03\x04\0\x01\x12\x03\x02\x08\x17\n\x0b\n\x04\x04\0\x02\0\x12\x03\x03\
|
|
|
- \x04\x12\n\x0c\n\x05\x04\0\x02\0\x05\x12\x03\x03\x04\n\n\x0c\n\x05\x04\0\
|
|
|
- \x02\0\x01\x12\x03\x03\x0b\r\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03\x03\x10\
|
|
|
- \x11\n\x0b\n\x04\x04\0\x02\x01\x12\x03\x04\x04\x13\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\
|
|
|
- \x0e\n\x0c\n\x05\x04\0\x02\x01\x03\x12\x03\x04\x11\x12\n\n\n\x02\x04\x01\
|
|
|
- \x12\x04\x06\0\t\x01\n\n\n\x03\x04\x01\x01\x12\x03\x06\x08\x0b\n\x0b\n\
|
|
|
- \x04\x04\x01\x02\0\x12\x03\x07\x04\x12\n\x0c\n\x05\x04\x01\x02\0\x05\x12\
|
|
|
- \x03\x07\x04\n\n\x0c\n\x05\x04\x01\x02\0\x01\x12\x03\x07\x0b\r\n\x0c\n\
|
|
|
- \x05\x04\x01\x02\0\x03\x12\x03\x07\x10\x11\n\x0b\n\x04\x04\x01\x02\x01\
|
|
|
- \x12\x03\x08\x04\x13\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\x03\x08\x04\t\n\
|
|
|
- \x0c\n\x05\x04\x01\x02\x01\x01\x12\x03\x08\n\x0e\n\x0c\n\x05\x04\x01\x02\
|
|
|
- \x01\x03\x12\x03\x08\x11\x12\n\n\n\x02\x04\x02\x12\x04\n\0\r\x01\n\n\n\
|
|
|
- \x03\x04\x02\x01\x12\x03\n\x08\x15\n\x0b\n\x04\x04\x02\x02\0\x12\x03\x0b\
|
|
|
- \x04\x12\n\x0c\n\x05\x04\x02\x02\0\x05\x12\x03\x0b\x04\n\n\x0c\n\x05\x04\
|
|
|
- \x02\x02\0\x01\x12\x03\x0b\x0b\r\n\x0c\n\x05\x04\x02\x02\0\x03\x12\x03\
|
|
|
- \x0b\x10\x11\n\x0b\n\x04\x04\x02\x02\x01\x12\x03\x0c\x04\x13\n\x0c\n\x05\
|
|
|
- \x04\x02\x02\x01\x05\x12\x03\x0c\x04\t\n\x0c\n\x05\x04\x02\x02\x01\x01\
|
|
|
- \x12\x03\x0c\n\x0e\n\x0c\n\x05\x04\x02\x02\x01\x03\x12\x03\x0c\x11\x12\n\
|
|
|
- \n\n\x02\x04\x03\x12\x04\x0e\0\x11\x01\n\n\n\x03\x04\x03\x01\x12\x03\x0e\
|
|
|
- \x08\x1c\n\x0b\n\x04\x04\x03\x02\0\x12\x03\x0f\x04\x12\n\x0c\n\x05\x04\
|
|
|
- \x03\x02\0\x05\x12\x03\x0f\x04\n\n\x0c\n\x05\x04\x03\x02\0\x01\x12\x03\
|
|
|
- \x0f\x0b\r\n\x0c\n\x05\x04\x03\x02\0\x03\x12\x03\x0f\x10\x11\n\x0b\n\x04\
|
|
|
- \x04\x03\x02\x01\x12\x03\x10\x04\x13\n\x0c\n\x05\x04\x03\x02\x01\x05\x12\
|
|
|
- \x03\x10\x04\t\n\x0c\n\x05\x04\x03\x02\x01\x01\x12\x03\x10\n\x0e\n\x0c\n\
|
|
|
- \x05\x04\x03\x02\x01\x03\x12\x03\x10\x11\x12\n\n\n\x02\x04\x04\x12\x04\
|
|
|
- \x12\0\x14\x01\n\n\n\x03\x04\x04\x01\x12\x03\x12\x08\x16\n\x0b\n\x04\x04\
|
|
|
- \x04\x02\0\x12\x03\x13\x04\x16\n\x0c\n\x05\x04\x04\x02\0\x05\x12\x03\x13\
|
|
|
- \x04\n\n\x0c\n\x05\x04\x04\x02\0\x01\x12\x03\x13\x0b\x11\n\x0c\n\x05\x04\
|
|
|
- \x04\x02\0\x03\x12\x03\x13\x14\x15b\x06proto3\
|
|
|
+ (\x0cR\x04data\"'\n\x0eQueryDocParams\x12\x15\n\x06doc_id\x18\x01\x20\
|
|
|
+ \x01(\tR\x05docIdJ\xb0\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\x05\x01\n\n\n\x03\x04\0\x01\
|
|
|
+ \x12\x03\x02\x08\x17\n\x0b\n\x04\x04\0\x02\0\x12\x03\x03\x04\x12\n\x0c\n\
|
|
|
+ \x05\x04\0\x02\0\x05\x12\x03\x03\x04\n\n\x0c\n\x05\x04\0\x02\0\x01\x12\
|
|
|
+ \x03\x03\x0b\r\n\x0c\n\x05\x04\0\x02\0\x03\x12\x03\x03\x10\x11\n\x0b\n\
|
|
|
+ \x04\x04\0\x02\x01\x12\x03\x04\x04\x13\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\x0e\n\x0c\n\
|
|
|
+ \x05\x04\0\x02\x01\x03\x12\x03\x04\x11\x12\n\n\n\x02\x04\x01\x12\x04\x06\
|
|
|
+ \0\n\x01\n\n\n\x03\x04\x01\x01\x12\x03\x06\x08\x0b\n\x0b\n\x04\x04\x01\
|
|
|
+ \x02\0\x12\x03\x07\x04\x12\n\x0c\n\x05\x04\x01\x02\0\x05\x12\x03\x07\x04\
|
|
|
+ \n\n\x0c\n\x05\x04\x01\x02\0\x01\x12\x03\x07\x0b\r\n\x0c\n\x05\x04\x01\
|
|
|
+ \x02\0\x03\x12\x03\x07\x10\x11\n\x0b\n\x04\x04\x01\x02\x01\x12\x03\x08\
|
|
|
+ \x04\x13\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\x03\x08\x04\t\n\x0c\n\x05\
|
|
|
+ \x04\x01\x02\x01\x01\x12\x03\x08\n\x0e\n\x0c\n\x05\x04\x01\x02\x01\x03\
|
|
|
+ \x12\x03\x08\x11\x12\n\x0b\n\x04\x04\x01\x02\x02\x12\x03\t\x04\x17\n\x0c\
|
|
|
+ \n\x05\x04\x01\x02\x02\x05\x12\x03\t\x04\t\n\x0c\n\x05\x04\x01\x02\x02\
|
|
|
+ \x01\x12\x03\t\n\x12\n\x0c\n\x05\x04\x01\x02\x02\x03\x12\x03\t\x15\x16\n\
|
|
|
+ \n\n\x02\x04\x02\x12\x04\x0b\0\x0e\x01\n\n\n\x03\x04\x02\x01\x12\x03\x0b\
|
|
|
+ \x08\x17\n\x0b\n\x04\x04\x02\x02\0\x12\x03\x0c\x04\x12\n\x0c\n\x05\x04\
|
|
|
+ \x02\x02\0\x05\x12\x03\x0c\x04\n\n\x0c\n\x05\x04\x02\x02\0\x01\x12\x03\
|
|
|
+ \x0c\x0b\r\n\x0c\n\x05\x04\x02\x02\0\x03\x12\x03\x0c\x10\x11\n\x0b\n\x04\
|
|
|
+ \x04\x02\x02\x01\x12\x03\r\x04\x17\n\x0c\n\x05\x04\x02\x02\x01\x05\x12\
|
|
|
+ \x03\r\x04\t\n\x0c\n\x05\x04\x02\x02\x01\x01\x12\x03\r\n\x12\n\x0c\n\x05\
|
|
|
+ \x04\x02\x02\x01\x03\x12\x03\r\x15\x16\n\n\n\x02\x04\x03\x12\x04\x0f\0\
|
|
|
+ \x12\x01\n\n\n\x03\x04\x03\x01\x12\x03\x0f\x08\x14\n\x0b\n\x04\x04\x03\
|
|
|
+ \x02\0\x12\x03\x10\x04\x12\n\x0c\n\x05\x04\x03\x02\0\x05\x12\x03\x10\x04\
|
|
|
+ \n\n\x0c\n\x05\x04\x03\x02\0\x01\x12\x03\x10\x0b\r\n\x0c\n\x05\x04\x03\
|
|
|
+ \x02\0\x03\x12\x03\x10\x10\x11\n\x0b\n\x04\x04\x03\x02\x01\x12\x03\x11\
|
|
|
+ \x04\x13\n\x0c\n\x05\x04\x03\x02\x01\x05\x12\x03\x11\x04\t\n\x0c\n\x05\
|
|
|
+ \x04\x03\x02\x01\x01\x12\x03\x11\n\x0e\n\x0c\n\x05\x04\x03\x02\x01\x03\
|
|
|
+ \x12\x03\x11\x11\x12\n\n\n\x02\x04\x04\x12\x04\x13\0\x15\x01\n\n\n\x03\
|
|
|
+ \x04\x04\x01\x12\x03\x13\x08\x16\n\x0b\n\x04\x04\x04\x02\0\x12\x03\x14\
|
|
|
+ \x04\x16\n\x0c\n\x05\x04\x04\x02\0\x05\x12\x03\x14\x04\n\n\x0c\n\x05\x04\
|
|
|
+ \x04\x02\0\x01\x12\x03\x14\x0b\x11\n\x0c\n\x05\x04\x04\x02\0\x03\x12\x03\
|
|
|
+ \x14\x14\x15b\x06proto3\
|
|
|
";
|
|
|
|
|
|
static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;
|