docs: regenerate proto files

This commit is contained in:
Evgeniy Kulikov 2019-11-21 10:34:38 +03:00
parent 3d445aeb0b
commit e333a13557
No known key found for this signature in database
GPG key ID: BF6AEE0A2A699BF2
11 changed files with 208 additions and 87 deletions

View file

@ -23,11 +23,12 @@ var _ = math.Inf
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
// Type can be Exact or Regex
type Filter_Type int32
const (
// Exact sets when value of filter should be equal to the header value
Filter_Exact Filter_Type = 0
// Regex sets when value of filter should match the header value by the regular expression
Filter_Regex Filter_Type = 1
)