From a00f03bbb6a9f41c705197727f22f872b4dd8ea6 Mon Sep 17 00:00:00 2001 From: apoorvam Date: Thu, 16 Feb 2017 18:04:48 +0530 Subject: [PATCH] Adding proto3 changes, compatible with gauge v0.8.0 --- gauge-proto | 2 +- gauge_messages/spec.pb.go | 295 ++++++++++++++++++++++++-------------- plugin.json | 4 +- 3 files changed, 194 insertions(+), 107 deletions(-) diff --git a/gauge-proto b/gauge-proto index 866c08a..dc39364 160000 --- a/gauge-proto +++ b/gauge-proto @@ -1 +1 @@ -Subproject commit 866c08a29e5d538359ebd26edf32d97e5c80027c +Subproject commit dc39364406584cd2b7fe0eb3487f321980000f9b diff --git a/gauge_messages/spec.pb.go b/gauge_messages/spec.pb.go index 680045c..e416a38 100644 --- a/gauge_messages/spec.pb.go +++ b/gauge_messages/spec.pb.go @@ -28,6 +28,7 @@ It has these top-level messages: ProtoHookFailure ProtoSuiteResult ProtoSpecResult + Error ProtoStepValue KillProcessRequest ExecutionStatusResponse @@ -218,6 +219,27 @@ func (ProtoExecutionResult_ErrorType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{14, 0} } +type Error_ErrorType int32 + +const ( + Error_PARSE_ERROR Error_ErrorType = 0 + Error_VALIDATION_ERROR Error_ErrorType = 1 +) + +var Error_ErrorType_name = map[int32]string{ + 0: "PARSE_ERROR", + 1: "VALIDATION_ERROR", +} +var Error_ErrorType_value = map[string]int32{ + "PARSE_ERROR": 0, + "VALIDATION_ERROR": 1, +} + +func (x Error_ErrorType) String() string { + return proto.EnumName(Error_ErrorType_name, int32(x)) +} +func (Error_ErrorType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{18, 0} } + // / A proto object representing a Specification // / A specification can contain Scenarios or Steps, besides Comments type ProtoSpec struct { @@ -1104,11 +1126,15 @@ type ProtoSpecResult struct { // / Holds the row numbers, which caused the execution to fail. FailedDataTableRows []int32 `protobuf:"varint,5,rep,packed,name=failedDataTableRows" json:"failedDataTableRows,omitempty"` // / Holds the time taken for executing the spec. - ExecutionTime int64 `protobuf:"varint,6,opt,name=executionTime" json:"executionTime,omitempty"` - Skipped bool `protobuf:"varint,7,opt,name=skipped" json:"skipped,omitempty"` + ExecutionTime int64 `protobuf:"varint,6,opt,name=executionTime" json:"executionTime,omitempty"` + // / Flag to indicate if spec is skipped + Skipped bool `protobuf:"varint,7,opt,name=skipped" json:"skipped,omitempty"` + // / Holds the number of Scenarios skipped ScenarioSkippedCount int32 `protobuf:"varint,9,opt,name=scenarioSkippedCount" json:"scenarioSkippedCount,omitempty"` // / Holds the row numbers, for which the execution skipped. SkippedDataTableRows []int32 `protobuf:"varint,10,rep,packed,name=skippedDataTableRows" json:"skippedDataTableRows,omitempty"` + // / Holds parse, validation and skipped errors. + Errors []*Error `protobuf:"bytes,11,rep,name=errors" json:"errors,omitempty"` } func (m *ProtoSpecResult) Reset() { *m = ProtoSpecResult{} } @@ -1179,6 +1205,58 @@ func (m *ProtoSpecResult) GetSkippedDataTableRows() []int32 { return nil } +func (m *ProtoSpecResult) GetErrors() []*Error { + if m != nil { + return m.Errors + } + return nil +} + +// / A proto object representing an error in spec/Scenario. +type Error struct { + // / Holds the type of error + Type Error_ErrorType `protobuf:"varint,1,opt,name=type,enum=gauge.messages.Error_ErrorType" json:"type,omitempty"` + // / Holds the filename. + Filename string `protobuf:"bytes,2,opt,name=filename" json:"filename,omitempty"` + // / Holds the line number of the error in file. + LineNumber int32 `protobuf:"varint,3,opt,name=lineNumber" json:"lineNumber,omitempty"` + // / Holds the error message. + Message string `protobuf:"bytes,4,opt,name=message" json:"message,omitempty"` +} + +func (m *Error) Reset() { *m = Error{} } +func (m *Error) String() string { return proto.CompactTextString(m) } +func (*Error) ProtoMessage() {} +func (*Error) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} } + +func (m *Error) GetType() Error_ErrorType { + if m != nil { + return m.Type + } + return Error_PARSE_ERROR +} + +func (m *Error) GetFilename() string { + if m != nil { + return m.Filename + } + return "" +} + +func (m *Error) GetLineNumber() int32 { + if m != nil { + return m.LineNumber + } + return 0 +} + +func (m *Error) GetMessage() string { + if m != nil { + return m.Message + } + return "" +} + // / A proto object representing a Step value. type ProtoStepValue struct { // / The actual string value describing he Step @@ -1192,7 +1270,7 @@ type ProtoStepValue struct { func (m *ProtoStepValue) Reset() { *m = ProtoStepValue{} } func (m *ProtoStepValue) String() string { return proto.CompactTextString(m) } func (*ProtoStepValue) ProtoMessage() {} -func (*ProtoStepValue) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} } +func (*ProtoStepValue) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} } func (m *ProtoStepValue) GetStepValue() string { if m != nil { @@ -1234,116 +1312,125 @@ func init() { proto.RegisterType((*ProtoHookFailure)(nil), "gauge.messages.ProtoHookFailure") proto.RegisterType((*ProtoSuiteResult)(nil), "gauge.messages.ProtoSuiteResult") proto.RegisterType((*ProtoSpecResult)(nil), "gauge.messages.ProtoSpecResult") + proto.RegisterType((*Error)(nil), "gauge.messages.Error") proto.RegisterType((*ProtoStepValue)(nil), "gauge.messages.ProtoStepValue") proto.RegisterEnum("gauge.messages.ExecutionStatus", ExecutionStatus_name, ExecutionStatus_value) proto.RegisterEnum("gauge.messages.ProtoItem_ItemType", ProtoItem_ItemType_name, ProtoItem_ItemType_value) proto.RegisterEnum("gauge.messages.Fragment_FragmentType", Fragment_FragmentType_name, Fragment_FragmentType_value) proto.RegisterEnum("gauge.messages.Parameter_ParameterType", Parameter_ParameterType_name, Parameter_ParameterType_value) proto.RegisterEnum("gauge.messages.ProtoExecutionResult_ErrorType", ProtoExecutionResult_ErrorType_name, ProtoExecutionResult_ErrorType_value) + proto.RegisterEnum("gauge.messages.Error_ErrorType", Error_ErrorType_name, Error_ErrorType_value) } func init() { proto.RegisterFile("spec.proto", fileDescriptor0) } var fileDescriptor0 = []byte{ - // 1595 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xcc, 0x58, 0xcd, 0x6e, 0xdb, 0xc6, - 0x16, 0x36, 0x49, 0xc9, 0x92, 0x8e, 0x7e, 0xcc, 0x8c, 0x8d, 0x5c, 0xde, 0xc0, 0x37, 0x11, 0x08, - 0x07, 0x11, 0x82, 0x5c, 0xdd, 0x5c, 0x17, 0x4d, 0x50, 0x14, 0x68, 0xe1, 0x58, 0x72, 0xa2, 0x36, - 0x71, 0x8c, 0x91, 0x1a, 0x14, 0xd9, 0xb4, 0x13, 0x7a, 0xa2, 0x30, 0x91, 0x48, 0x82, 0x1c, 0x39, - 0x4e, 0xbb, 0xef, 0x03, 0x14, 0xdd, 0x75, 0xd5, 0x6d, 0x9f, 0xa2, 0xeb, 0x16, 0xe8, 0x23, 0xb4, - 0xef, 0xd1, 0x55, 0x31, 0x3f, 0xfc, 0x15, 0x65, 0x3b, 0x41, 0x16, 0xdd, 0xcd, 0x9c, 0x39, 0xe7, - 0xcc, 0x9c, 0xef, 0xfc, 0x92, 0x00, 0x51, 0x40, 0x9d, 0x7e, 0x10, 0xfa, 0xcc, 0x47, 0x9d, 0x29, - 0x59, 0x4c, 0x69, 0x7f, 0x4e, 0xa3, 0x88, 0x4c, 0x69, 0x64, 0xff, 0xaa, 0x43, 0xe3, 0x88, 0x9f, - 0x8c, 0x03, 0xea, 0xa0, 0x2e, 0x34, 0x39, 0xef, 0x03, 0x4a, 0x8e, 0x5d, 0x6f, 0x6a, 0x69, 0x5d, - 0xad, 0xd7, 0xc0, 0x59, 0x12, 0xfa, 0x1f, 0x54, 0x5d, 0x46, 0xe7, 0x91, 0xa5, 0x77, 0x8d, 0x5e, - 0x73, 0xf7, 0xdf, 0xfd, 0xbc, 0xbe, 0xbe, 0xd0, 0x35, 0x62, 0x74, 0x8e, 0x25, 0x1f, 0xda, 0x81, - 0xb6, 0x1b, 0x4d, 0xc8, 0xb3, 0x19, 0x1d, 0x84, 0xee, 0x09, 0xf5, 0x2c, 0xa3, 0xab, 0xf5, 0xea, - 0x38, 0x4f, 0x44, 0x0f, 0xa0, 0x13, 0x84, 0xf4, 0x81, 0xef, 0xbf, 0x3a, 0x20, 0xee, 0x6c, 0x11, - 0x52, 0xab, 0xd2, 0xd5, 0x7a, 0xcd, 0xdd, 0x6e, 0xa9, 0xfe, 0x0c, 0x1f, 0x2e, 0xc8, 0xa1, 0xcf, - 0x60, 0x23, 0xf0, 0x23, 0x96, 0x55, 0x55, 0xbd, 0xa0, 0xaa, 0xa2, 0x20, 0xba, 0x02, 0xf5, 0xe7, - 0xee, 0x8c, 0x1e, 0x92, 0x39, 0xb5, 0xd6, 0x05, 0x16, 0xc9, 0x1e, 0x21, 0xa8, 0x30, 0x32, 0x8d, - 0xac, 0x5a, 0xd7, 0xe8, 0x35, 0xb0, 0x58, 0xdb, 0xbf, 0x57, 0x14, 0x98, 0x1c, 0x00, 0xf4, 0x09, - 0xd4, 0x39, 0x04, 0x93, 0x37, 0x01, 0x15, 0x48, 0x76, 0x76, 0xed, 0x95, 0x68, 0xf5, 0x47, 0x8a, - 0x13, 0x27, 0x32, 0xe8, 0xbf, 0x50, 0x89, 0x18, 0x0d, 0x2c, 0x5d, 0x3c, 0xbf, 0x1c, 0xe9, 0x31, - 0xa3, 0x01, 0x16, 0x6c, 0xe8, 0x0e, 0xd4, 0x1c, 0xdf, 0x73, 0x68, 0xc0, 0x04, 0xc4, 0xcd, 0xdd, - 0xed, 0x52, 0x89, 0x7d, 0xc9, 0x83, 0x63, 0x66, 0xf4, 0x11, 0xd4, 0x23, 0x87, 0x7a, 0x24, 0x74, - 0x7d, 0x05, 0xfa, 0x7f, 0xca, 0xaf, 0x52, 0x4c, 0x38, 0x61, 0x47, 0x4f, 0x61, 0x93, 0xa5, 0x4e, - 0x8c, 0x19, 0x14, 0xde, 0xbd, 0x52, 0x2d, 0x93, 0x65, 0x7e, 0x5c, 0xa6, 0x44, 0x9a, 0x33, 0x9f, - 0x53, 0x8f, 0x09, 0xe8, 0x57, 0x9b, 0x23, 0x78, 0x70, 0xcc, 0x8c, 0x6e, 0x43, 0x55, 0xa8, 0xb3, - 0x6a, 0x42, 0xea, 0xca, 0xea, 0x57, 0x60, 0xc9, 0xc8, 0x71, 0x16, 0x9e, 0xac, 0x9f, 0x81, 0xf3, - 0x84, 0x4c, 0x23, 0xe5, 0xe4, 0x97, 0x50, 0x8f, 0x9d, 0x85, 0xea, 0x50, 0xe1, 0x1e, 0x30, 0xd7, - 0x50, 0x13, 0x6a, 0xea, 0x29, 0xa6, 0x26, 0x37, 0x02, 0x5d, 0x53, 0x47, 0x2d, 0xa8, 0xc7, 0x46, - 0x99, 0x06, 0xfa, 0x17, 0x6c, 0x96, 0x40, 0x60, 0x56, 0x50, 0x03, 0xaa, 0xe2, 0xc0, 0xac, 0x72, - 0xad, 0xfc, 0x3e, 0x73, 0xdd, 0xfe, 0xa9, 0x0a, 0xed, 0x1c, 0xf8, 0xa8, 0x07, 0x1b, 0x31, 0xfc, - 0xf9, 0x2c, 0x2d, 0x92, 0xd1, 0x15, 0x58, 0x7f, 0x4e, 0xdc, 0x19, 0x3d, 0x16, 0x01, 0x54, 0xbf, - 0xa7, 0x5b, 0x1a, 0x56, 0x14, 0xf4, 0x21, 0xd4, 0x1d, 0xdf, 0x63, 0xf4, 0x94, 0x45, 0x96, 0x71, - 0x5e, 0x22, 0x27, 0xac, 0xe8, 0x53, 0x68, 0xc7, 0xb7, 0x8c, 0x44, 0x11, 0xa8, 0x9c, 0x27, 0x9b, - 0xe7, 0x2f, 0x49, 0xf3, 0xea, 0xfb, 0x4b, 0xf3, 0xf5, 0x77, 0x4d, 0xf3, 0x92, 0x54, 0xe6, 0x65, - 0x8b, 0x9e, 0x52, 0x67, 0xc1, 0x5c, 0xdf, 0x9b, 0xb8, 0x73, 0x2a, 0xa2, 0xc3, 0xc0, 0x79, 0x22, - 0xda, 0x86, 0x5a, 0xf4, 0xca, 0x0d, 0x02, 0x7a, 0x6c, 0x35, 0x12, 0x90, 0x63, 0x12, 0xba, 0x0a, - 0xc0, 0x97, 0xc3, 0x30, 0xf4, 0xc3, 0xc8, 0x02, 0xa1, 0x3d, 0x43, 0x41, 0x1d, 0xd0, 0x47, 0x03, - 0xab, 0x29, 0xdc, 0xa7, 0x8f, 0x06, 0x1c, 0x5e, 0x46, 0x49, 0x38, 0xf0, 0x5f, 0x7b, 0x3c, 0xaa, - 0x22, 0xab, 0x75, 0x2e, 0xbc, 0x39, 0x7e, 0xd4, 0x83, 0x4a, 0x14, 0x10, 0xcf, 0x6a, 0x0b, 0x24, - 0xb6, 0x8a, 0x72, 0xe3, 0x80, 0x78, 0x58, 0x70, 0xa0, 0x11, 0x6c, 0x24, 0x96, 0x8c, 0x19, 0x61, - 0x8b, 0xc8, 0xea, 0x88, 0x12, 0x75, 0xad, 0x28, 0x34, 0xcc, 0xb3, 0xe1, 0xa2, 0x9c, 0xdd, 0x87, - 0x0a, 0x57, 0x8c, 0xb6, 0xa0, 0x1a, 0x31, 0x12, 0x32, 0x11, 0x8f, 0x06, 0x96, 0x1b, 0x64, 0x82, - 0x41, 0x3d, 0x19, 0x82, 0x06, 0xe6, 0x4b, 0xfb, 0x5b, 0xb0, 0x56, 0x55, 0x82, 0x5c, 0x2d, 0xd2, - 0xde, 0xae, 0x16, 0xed, 0x40, 0x5b, 0xa4, 0x33, 0xf6, 0x5f, 0x8f, 0xbc, 0x63, 0x7a, 0x2a, 0xae, - 0xac, 0xe2, 0x3c, 0xd1, 0xfe, 0x53, 0x8b, 0xdb, 0x1d, 0x2f, 0x99, 0x57, 0x01, 0x88, 0xc3, 0x16, - 0x64, 0x36, 0xa1, 0xa7, 0x4c, 0xe5, 0x51, 0x86, 0xc2, 0xcf, 0x03, 0x12, 0x46, 0xf4, 0x58, 0x9c, - 0xeb, 0xf2, 0x3c, 0xa5, 0xa0, 0x3b, 0xd0, 0x78, 0x1e, 0x92, 0x29, 0xcf, 0xfa, 0x38, 0x8f, 0xac, - 0xe2, 0x7b, 0x0f, 0x14, 0x03, 0x4e, 0x59, 0x79, 0xdd, 0xe4, 0x25, 0x3b, 0x81, 0x16, 0xd3, 0x68, - 0x31, 0x63, 0xaa, 0xfa, 0xf6, 0x56, 0x16, 0xfa, 0x02, 0x3f, 0x2e, 0x53, 0x62, 0xff, 0xa1, 0x41, - 0x2b, 0x5b, 0xe8, 0xd1, 0xc7, 0xd0, 0x54, 0xa5, 0x9e, 0xeb, 0x50, 0xb0, 0x9e, 0xd1, 0x4d, 0xb2, - 0xdc, 0xbc, 0xdd, 0x47, 0x22, 0x14, 0xcf, 0x6f, 0xf7, 0x82, 0x0f, 0x7d, 0x0d, 0x97, 0x95, 0x7c, - 0xd1, 0x3a, 0xe3, 0x2d, 0xad, 0x5b, 0xa1, 0xc7, 0xbe, 0xa6, 0x3c, 0xc8, 0x4b, 0x64, 0x92, 0xba, - 0x5a, 0xa6, 0x0b, 0xff, 0xa6, 0x41, 0x3d, 0x46, 0x1d, 0x8d, 0xa0, 0x15, 0xe3, 0x9e, 0x69, 0xc4, - 0xd7, 0x57, 0x79, 0x29, 0x59, 0x88, 0x5e, 0x9c, 0x13, 0x15, 0x77, 0xa5, 0x71, 0x20, 0xd6, 0xe8, - 0x2e, 0x34, 0x02, 0x12, 0x92, 0x39, 0x65, 0x34, 0x54, 0x16, 0x2e, 0x63, 0x14, 0x33, 0xe0, 0x94, - 0xd7, 0xbe, 0x01, 0xad, 0xec, 0x55, 0xa2, 0xe6, 0xd3, 0x53, 0x66, 0xae, 0xa1, 0x36, 0x34, 0x12, - 0x09, 0x53, 0xb3, 0xbf, 0xd7, 0x33, 0x7b, 0xf4, 0x08, 0xda, 0x89, 0x8e, 0x8c, 0x3d, 0x37, 0x56, - 0xde, 0x99, 0xae, 0x84, 0x45, 0x79, 0x69, 0x9e, 0xb3, 0x27, 0x64, 0xb6, 0xa0, 0xca, 0x26, 0xb9, - 0xe1, 0x86, 0x7a, 0x7c, 0xe4, 0x31, 0xa4, 0xa1, 0x7c, 0x9d, 0xb6, 0xd5, 0xca, 0x05, 0xdb, 0xaa, - 0xfd, 0x14, 0xda, 0xb9, 0xbb, 0x11, 0xc0, 0x3a, 0x2f, 0x19, 0xae, 0x23, 0xdb, 0xe5, 0xe0, 0x8d, - 0x47, 0xe6, 0xae, 0x63, 0x6a, 0x08, 0x41, 0x87, 0x4f, 0x9f, 0x2e, 0x99, 0x7d, 0x35, 0x66, 0xa1, - 0xeb, 0x4d, 0x4d, 0x1d, 0x5d, 0x82, 0x76, 0x4c, 0x93, 0x6d, 0xd1, 0x48, 0x3b, 0x64, 0xc5, 0xb6, - 0x93, 0x18, 0x97, 0x4d, 0x3f, 0x76, 0x8d, 0x96, 0xba, 0xc6, 0x3e, 0x05, 0x48, 0x1f, 0x85, 0xee, - 0x42, 0xed, 0x05, 0x25, 0xc7, 0x34, 0x8c, 0xce, 0x2c, 0x2c, 0x13, 0x55, 0x2d, 0x70, 0xcc, 0x8d, - 0xfe, 0x0f, 0x95, 0xd0, 0x7f, 0x1d, 0x27, 0xc0, 0x39, 0x52, 0x82, 0xd5, 0xbe, 0xae, 0x9a, 0x76, - 0x4c, 0xe6, 0x30, 0x3b, 0x74, 0x36, 0x8b, 0xc3, 0x54, 0x6e, 0xec, 0x5f, 0x74, 0x55, 0x09, 0x4b, - 0xa2, 0x1f, 0x1d, 0x66, 0x0a, 0xb4, 0x4a, 0x20, 0xf9, 0xee, 0x9d, 0xd2, 0x17, 0x14, 0x93, 0xa7, - 0x28, 0x5c, 0xd2, 0x79, 0xf5, 0xf7, 0xd7, 0x79, 0x8d, 0x77, 0xed, 0xbc, 0x56, 0xda, 0x3f, 0x2b, - 0xe2, 0xb3, 0x20, 0xe9, 0x9d, 0x3b, 0xd0, 0x56, 0x4b, 0x4c, 0x49, 0xe4, 0x7b, 0x62, 0x50, 0x68, - 0xe0, 0x3c, 0xd1, 0xfe, 0x4b, 0x87, 0xad, 0x32, 0xfb, 0xd1, 0xe5, 0x64, 0xf8, 0xd1, 0x84, 0xde, - 0x78, 0xf0, 0xb9, 0x09, 0x66, 0x48, 0x1d, 0xff, 0x84, 0x86, 0xdc, 0x37, 0xa2, 0x0f, 0xcb, 0xf1, - 0x08, 0x2f, 0xd1, 0x91, 0x0d, 0x2d, 0xca, 0x17, 0x8f, 0xa4, 0x3d, 0x2a, 0x1d, 0x72, 0x34, 0xd1, - 0xe2, 0x19, 0x71, 0x5e, 0x4d, 0x42, 0xe2, 0xc8, 0xdc, 0xe0, 0x2d, 0x3e, 0xa1, 0x88, 0x73, 0x27, - 0xa4, 0xd4, 0x1b, 0xbf, 0xf0, 0x99, 0xb0, 0xa1, 0x85, 0x33, 0x94, 0xe5, 0x31, 0x63, 0xbd, 0x6c, - 0xcc, 0xb0, 0xa0, 0xa6, 0x40, 0x55, 0x33, 0x4a, 0xbc, 0x45, 0x0f, 0xa1, 0x21, 0xde, 0x23, 0x6a, - 0x41, 0x5d, 0xd4, 0x82, 0xfe, 0x45, 0x02, 0xa4, 0x3f, 0x8c, 0xa5, 0x70, 0xaa, 0xc0, 0xbe, 0x05, - 0x8d, 0x84, 0xce, 0xeb, 0xd0, 0xde, 0x78, 0x3c, 0xc4, 0x93, 0xd1, 0xe3, 0x43, 0x73, 0x0d, 0x99, - 0xd0, 0x7a, 0x32, 0xc4, 0xa3, 0x83, 0xd1, 0xfe, 0x9e, 0xa0, 0x68, 0xf6, 0x09, 0x98, 0x45, 0x0f, - 0x17, 0xf0, 0xd0, 0x96, 0xf0, 0x28, 0x62, 0xaa, 0xaf, 0xc0, 0x34, 0xc5, 0xcc, 0x28, 0x62, 0x66, - 0xff, 0x58, 0x51, 0x17, 0x8f, 0x17, 0x2e, 0xa3, 0xca, 0xe1, 0x7b, 0xf2, 0xcb, 0x55, 0xee, 0x64, - 0xa2, 0x35, 0x97, 0x87, 0x99, 0xe4, 0x4b, 0x57, 0xa5, 0x49, 0x56, 0xe6, 0x1f, 0x9a, 0x22, 0x69, - 0x24, 0x57, 0x8a, 0x91, 0xcc, 0x1f, 0x1f, 0x1d, 0x88, 0xed, 0xbe, 0xbf, 0xf0, 0x64, 0x7c, 0x55, - 0xf1, 0x12, 0xfd, 0x82, 0x51, 0xc6, 0x3f, 0xfe, 0x17, 0x8e, 0x43, 0xa3, 0x08, 0x13, 0x26, 0xbf, - 0x9f, 0x74, 0x9c, 0x25, 0x71, 0x0e, 0xea, 0x9d, 0xb8, 0xa1, 0xef, 0x89, 0xef, 0xb2, 0xba, 0xfc, - 0x3d, 0x90, 0x21, 0x25, 0xfd, 0xb8, 0xa1, 0x0a, 0x31, 0xef, 0xd1, 0x5d, 0x68, 0x06, 0xa1, 0xff, - 0x92, 0x3a, 0x4c, 0x7c, 0x48, 0x83, 0x94, 0xca, 0x90, 0xd0, 0x36, 0x34, 0x98, 0x3b, 0xa7, 0x11, - 0x23, 0xf3, 0x40, 0xcd, 0xc3, 0x29, 0x01, 0xdd, 0x82, 0x4b, 0xc2, 0xa2, 0xb1, 0x4c, 0x7d, 0x69, - 0x6a, 0x4b, 0x98, 0xba, 0x7c, 0x60, 0xff, 0x60, 0xc0, 0x46, 0xc1, 0xcd, 0xa2, 0x4b, 0xc7, 0xa4, - 0xb3, 0x07, 0x20, 0x2e, 0x93, 0xf2, 0x8a, 0x2a, 0xa4, 0x06, 0x4c, 0x79, 0xad, 0x1a, 0x2a, 0x73, - 0x44, 0x74, 0x1b, 0x36, 0x63, 0x42, 0xd6, 0x1b, 0x86, 0xe0, 0x2d, 0x3b, 0x5a, 0xe9, 0xd4, 0xdb, - 0xb0, 0x29, 0x57, 0x03, 0xc2, 0x48, 0xdc, 0x3e, 0x22, 0xab, 0xda, 0x35, 0xb8, 0xa6, 0x92, 0xa3, - 0x8b, 0x17, 0x90, 0xb8, 0xce, 0xd6, 0xf2, 0x75, 0x76, 0x17, 0xb6, 0xe2, 0x07, 0xe6, 0xf0, 0x6d, - 0x88, 0xc7, 0x97, 0x9e, 0x09, 0x19, 0xb9, 0xcf, 0x3f, 0x13, 0xc4, 0x33, 0x4b, 0xcf, 0xec, 0xef, - 0x34, 0xe8, 0x24, 0xcd, 0xee, 0x89, 0x18, 0x33, 0xb6, 0xa1, 0x11, 0xc5, 0x1b, 0x55, 0x2a, 0x52, - 0x02, 0xba, 0x03, 0x97, 0x93, 0x59, 0xc5, 0xfd, 0x86, 0x1e, 0x27, 0x72, 0xaa, 0x66, 0xac, 0x38, - 0x55, 0x33, 0xbb, 0x3c, 0x91, 0x43, 0xb9, 0x9c, 0xd9, 0x15, 0xe5, 0xe6, 0x7d, 0xd8, 0x28, 0x7c, - 0xd2, 0xa0, 0x0d, 0x68, 0x1e, 0x3e, 0x9e, 0x0c, 0xbf, 0x1c, 0xee, 0x7f, 0x31, 0x19, 0x0e, 0xcc, - 0x35, 0x3e, 0xa9, 0x1c, 0xf1, 0xda, 0x37, 0x30, 0x35, 0xbe, 0x3e, 0xd8, 0x1b, 0x3d, 0x1c, 0x0e, - 0x4c, 0x9d, 0x4f, 0x2d, 0xe3, 0xcf, 0x47, 0x47, 0x47, 0xc3, 0x81, 0x69, 0xdc, 0xbb, 0xf4, 0xb3, - 0xde, 0xb9, 0x2f, 0x62, 0x48, 0x15, 0xae, 0xe8, 0xd9, 0xba, 0x88, 0x9c, 0x0f, 0xfe, 0x0e, 0x00, - 0x00, 0xff, 0xff, 0x91, 0xd4, 0x78, 0xcb, 0x71, 0x13, 0x00, 0x00, + // 1698 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xcc, 0x58, 0xcd, 0x8e, 0x1b, 0xc7, + 0x11, 0xde, 0xf9, 0xe1, 0x2e, 0x59, 0xfc, 0xd9, 0x51, 0x6b, 0xa3, 0x4c, 0x04, 0x45, 0x22, 0x06, + 0x32, 0x4c, 0x18, 0x36, 0xa3, 0xac, 0x11, 0x19, 0x41, 0x80, 0x04, 0x6b, 0x91, 0x6b, 0x31, 0x91, + 0x57, 0x8b, 0x26, 0x23, 0x04, 0xbe, 0x38, 0xad, 0xd9, 0x16, 0x3d, 0x16, 0x39, 0x33, 0x98, 0x69, + 0xae, 0xd6, 0xc9, 0x3d, 0x0f, 0x90, 0x6b, 0x4e, 0xb9, 0xe6, 0x29, 0x02, 0x04, 0xc8, 0x21, 0x01, + 0xf2, 0x08, 0xc9, 0x7b, 0xe4, 0x14, 0x74, 0x75, 0xcf, 0x2f, 0x87, 0xda, 0xb5, 0xa1, 0x43, 0x6e, + 0xdd, 0xd5, 0x55, 0x35, 0x5d, 0x5f, 0x77, 0x7d, 0x55, 0x3d, 0x00, 0x69, 0xcc, 0xfd, 0x71, 0x9c, + 0x44, 0x22, 0x22, 0x83, 0x25, 0xdb, 0x2c, 0xf9, 0x78, 0xcd, 0xd3, 0x94, 0x2d, 0x79, 0xea, 0xfd, + 0xc3, 0x84, 0xce, 0xb9, 0x5c, 0x99, 0xc7, 0xdc, 0x27, 0x43, 0xe8, 0x4a, 0xdd, 0xa7, 0x9c, 0x5d, + 0x04, 0xe1, 0xd2, 0x35, 0x86, 0xc6, 0xa8, 0x43, 0xcb, 0x22, 0xf2, 0x23, 0x68, 0x05, 0x82, 0xaf, + 0x53, 0xd7, 0x1c, 0x5a, 0xa3, 0xee, 0xf1, 0x0f, 0xc6, 0x55, 0x7f, 0x63, 0xf4, 0x35, 0x13, 0x7c, + 0x4d, 0x95, 0x1e, 0x79, 0x08, 0xfd, 0x20, 0x5d, 0xb0, 0x97, 0x2b, 0x3e, 0x49, 0x82, 0x4b, 0x1e, + 0xba, 0xd6, 0xd0, 0x18, 0xb5, 0x69, 0x55, 0x48, 0x9e, 0xc2, 0x20, 0x4e, 0xf8, 0xd3, 0x28, 0x7a, + 0x7d, 0xca, 0x82, 0xd5, 0x26, 0xe1, 0xae, 0x3d, 0x34, 0x46, 0xdd, 0xe3, 0x61, 0xa3, 0xff, 0x92, + 0x1e, 0xad, 0xd9, 0x91, 0x5f, 0xc2, 0x61, 0x1c, 0xa5, 0xa2, 0xec, 0xaa, 0x75, 0x43, 0x57, 0x75, + 0x43, 0x72, 0x17, 0xda, 0xaf, 0x82, 0x15, 0x3f, 0x63, 0x6b, 0xee, 0xee, 0x23, 0x16, 0xf9, 0x9c, + 0x10, 0xb0, 0x05, 0x5b, 0xa6, 0xee, 0xc1, 0xd0, 0x1a, 0x75, 0x28, 0x8e, 0xbd, 0x7f, 0xd9, 0x1a, + 0x4c, 0x09, 0x00, 0xf9, 0x39, 0xb4, 0x25, 0x04, 0x8b, 0x6f, 0x62, 0x8e, 0x48, 0x0e, 0x8e, 0xbd, + 0x9d, 0x68, 0x8d, 0x67, 0x5a, 0x93, 0xe6, 0x36, 0xe4, 0x23, 0xb0, 0x53, 0xc1, 0x63, 0xd7, 0xc4, + 0xed, 0x37, 0x23, 0x3d, 0x17, 0x3c, 0xa6, 0xa8, 0x46, 0x1e, 0xc3, 0x81, 0x1f, 0x85, 0x3e, 0x8f, + 0x05, 0x42, 0xdc, 0x3d, 0xbe, 0xd7, 0x68, 0xf1, 0x44, 0xe9, 0xd0, 0x4c, 0x99, 0xfc, 0x14, 0xda, + 0xa9, 0xcf, 0x43, 0x96, 0x04, 0x91, 0x06, 0xfd, 0x87, 0xcd, 0x9f, 0xd2, 0x4a, 0x34, 0x57, 0x27, + 0x5f, 0xc0, 0x6d, 0x51, 0x1c, 0x62, 0xa6, 0xa0, 0xf1, 0x1e, 0x35, 0x7a, 0x59, 0x6c, 0xeb, 0xd3, + 0x26, 0x27, 0x2a, 0x9c, 0xf5, 0x9a, 0x87, 0x02, 0xa1, 0xdf, 0x1d, 0x0e, 0xea, 0xd0, 0x4c, 0x99, + 0x3c, 0x82, 0x16, 0xba, 0x73, 0x0f, 0xd0, 0xea, 0xee, 0xee, 0x5d, 0x50, 0xa5, 0x28, 0x71, 0xc6, + 0x93, 0x6c, 0xbf, 0x05, 0xe7, 0x05, 0x5b, 0xa6, 0xfa, 0x90, 0xbf, 0x86, 0x76, 0x76, 0x58, 0xa4, + 0x0d, 0xb6, 0x3c, 0x01, 0x67, 0x8f, 0x74, 0xe1, 0x40, 0x6f, 0xc5, 0x31, 0xd4, 0x04, 0xd1, 0x75, + 0x4c, 0xd2, 0x83, 0x76, 0x16, 0x94, 0x63, 0x91, 0xef, 0xc3, 0xed, 0x06, 0x08, 0x1c, 0x9b, 0x74, + 0xa0, 0x85, 0x0b, 0x4e, 0x4b, 0x7a, 0x95, 0xdf, 0x73, 0xf6, 0xbd, 0x3f, 0xb7, 0xa0, 0x5f, 0x01, + 0x9f, 0x8c, 0xe0, 0x30, 0x83, 0xbf, 0x9a, 0xa5, 0x75, 0x31, 0xb9, 0x0b, 0xfb, 0xaf, 0x58, 0xb0, + 0xe2, 0x17, 0x78, 0x81, 0xda, 0x9f, 0x9a, 0xae, 0x41, 0xb5, 0x84, 0xfc, 0x04, 0xda, 0x7e, 0x14, + 0x0a, 0x7e, 0x25, 0x52, 0xd7, 0xba, 0x2e, 0x91, 0x73, 0x55, 0xf2, 0x0b, 0xe8, 0x67, 0x5f, 0x99, + 0x21, 0x09, 0xd8, 0xd7, 0xd9, 0x56, 0xf5, 0x1b, 0xd2, 0xbc, 0xf5, 0xee, 0xd2, 0x7c, 0xff, 0xbb, + 0xa6, 0x79, 0x43, 0x2a, 0x4b, 0xda, 0xe2, 0x57, 0xdc, 0xdf, 0x88, 0x20, 0x0a, 0x17, 0xc1, 0x9a, + 0xe3, 0xed, 0xb0, 0x68, 0x55, 0x48, 0xee, 0xc1, 0x41, 0xfa, 0x3a, 0x88, 0x63, 0x7e, 0xe1, 0x76, + 0x72, 0x90, 0x33, 0x11, 0xb9, 0x0f, 0x20, 0x87, 0xd3, 0x24, 0x89, 0x92, 0xd4, 0x05, 0xf4, 0x5e, + 0x92, 0x90, 0x01, 0x98, 0xb3, 0x89, 0xdb, 0xc5, 0xe3, 0x33, 0x67, 0x13, 0x09, 0xaf, 0xe0, 0x2c, + 0x99, 0x44, 0x6f, 0x42, 0x79, 0xab, 0x52, 0xb7, 0x77, 0x2d, 0xbc, 0x15, 0x7d, 0x32, 0x02, 0x3b, + 0x8d, 0x59, 0xe8, 0xf6, 0x11, 0x89, 0xa3, 0xba, 0xdd, 0x3c, 0x66, 0x21, 0x45, 0x0d, 0x32, 0x83, + 0xc3, 0x3c, 0x92, 0xb9, 0x60, 0x62, 0x93, 0xba, 0x03, 0xa4, 0xa8, 0x07, 0x75, 0xa3, 0x69, 0x55, + 0x8d, 0xd6, 0xed, 0xbc, 0x31, 0xd8, 0xd2, 0x31, 0x39, 0x82, 0x56, 0x2a, 0x58, 0x22, 0xf0, 0x3e, + 0x5a, 0x54, 0x4d, 0x88, 0x03, 0x16, 0x0f, 0xd5, 0x15, 0xb4, 0xa8, 0x1c, 0x7a, 0xbf, 0x07, 0x77, + 0x17, 0x13, 0x54, 0xb8, 0xc8, 0xf8, 0x76, 0x5c, 0xf4, 0x10, 0xfa, 0x98, 0xce, 0x34, 0x7a, 0x33, + 0x0b, 0x2f, 0xf8, 0x15, 0x7e, 0xb2, 0x45, 0xab, 0x42, 0xef, 0x3f, 0x46, 0x56, 0xee, 0x24, 0x65, + 0xde, 0x07, 0x60, 0xbe, 0xd8, 0xb0, 0xd5, 0x82, 0x5f, 0x09, 0x9d, 0x47, 0x25, 0x89, 0x5c, 0x8f, + 0x59, 0x92, 0xf2, 0x0b, 0x5c, 0x37, 0xd5, 0x7a, 0x21, 0x21, 0x8f, 0xa1, 0xf3, 0x2a, 0x61, 0x4b, + 0x99, 0xf5, 0x59, 0x1e, 0xb9, 0xf5, 0xfd, 0x9e, 0x6a, 0x05, 0x5a, 0xa8, 0x4a, 0xde, 0x94, 0x94, + 0x9d, 0x43, 0x4b, 0x79, 0xba, 0x59, 0x09, 0xcd, 0xbe, 0xa3, 0x9d, 0x44, 0x5f, 0xd3, 0xa7, 0x4d, + 0x4e, 0xbc, 0x7f, 0x1b, 0xd0, 0x2b, 0x13, 0x3d, 0xf9, 0x19, 0x74, 0x35, 0xd5, 0x4b, 0x1f, 0x1a, + 0xd6, 0xb7, 0x54, 0x93, 0xb2, 0xb6, 0x2c, 0xf7, 0x29, 0x5e, 0xc5, 0xeb, 0xcb, 0x3d, 0xea, 0x91, + 0xdf, 0xc2, 0x1d, 0x6d, 0x5f, 0x8f, 0xce, 0xfa, 0x96, 0xd1, 0xed, 0xf0, 0xe3, 0x3d, 0xd0, 0x27, + 0x28, 0x29, 0x32, 0x4f, 0x5d, 0xa3, 0x54, 0x85, 0xff, 0x69, 0x40, 0x3b, 0x43, 0x9d, 0xcc, 0xa0, + 0x97, 0xe1, 0x5e, 0x2a, 0xc4, 0xef, 0xed, 0x3a, 0xa5, 0x7c, 0x80, 0xb5, 0xb8, 0x62, 0x8a, 0xdf, + 0x2a, 0xee, 0x01, 0x8e, 0xc9, 0x27, 0xd0, 0x89, 0x59, 0xc2, 0xd6, 0x5c, 0xf0, 0x44, 0x47, 0xb8, + 0x8d, 0x51, 0xa6, 0x40, 0x0b, 0x5d, 0xef, 0x7d, 0xe8, 0x95, 0x3f, 0x85, 0x9c, 0xcf, 0xaf, 0x84, + 0xb3, 0x47, 0xfa, 0xd0, 0xc9, 0x2d, 0x1c, 0xc3, 0xfb, 0xa3, 0x59, 0x9a, 0x93, 0xcf, 0xa1, 0x9f, + 0xfb, 0x28, 0xc5, 0xf3, 0xfe, 0xce, 0x6f, 0x16, 0x23, 0x8c, 0xa8, 0x6a, 0x2d, 0x73, 0xf6, 0x92, + 0xad, 0x36, 0x5c, 0xc7, 0xa4, 0x26, 0x32, 0xd0, 0x50, 0xb6, 0x3c, 0x96, 0x0a, 0x54, 0x8e, 0x8b, + 0xb2, 0x6a, 0xdf, 0xb0, 0xac, 0x7a, 0x5f, 0x40, 0xbf, 0xf2, 0x6d, 0x02, 0xb0, 0x2f, 0x29, 0x23, + 0xf0, 0x55, 0xb9, 0x9c, 0x7c, 0x13, 0xb2, 0x75, 0xe0, 0x3b, 0x06, 0x21, 0x30, 0x90, 0xdd, 0x67, + 0xc0, 0x56, 0x5f, 0xce, 0x45, 0x12, 0x84, 0x4b, 0xc7, 0x24, 0xb7, 0xa0, 0x9f, 0xc9, 0x54, 0x59, + 0xb4, 0x8a, 0x0a, 0x69, 0x7b, 0x5e, 0x7e, 0xc7, 0x55, 0xd1, 0xcf, 0x8e, 0xc6, 0x28, 0x8e, 0xc6, + 0xbb, 0x02, 0x28, 0x36, 0x45, 0x3e, 0x81, 0x83, 0xaf, 0x38, 0xbb, 0xe0, 0x49, 0xfa, 0x56, 0x62, + 0x59, 0x68, 0xb6, 0xa0, 0x99, 0x36, 0xf9, 0x31, 0xd8, 0x49, 0xf4, 0x26, 0x4b, 0x80, 0x6b, 0xac, + 0x50, 0xd5, 0x7b, 0x4f, 0x17, 0xed, 0x4c, 0x2c, 0x61, 0xf6, 0xf9, 0x6a, 0x95, 0x5d, 0x53, 0x35, + 0xf1, 0xfe, 0x6a, 0x6a, 0x26, 0x6c, 0xb8, 0xfd, 0xe4, 0xac, 0x44, 0xd0, 0x3a, 0x81, 0xd4, 0xbe, + 0x1f, 0x36, 0xee, 0xa0, 0x9e, 0x3c, 0x75, 0xe3, 0x86, 0xca, 0x6b, 0xbe, 0xbb, 0xca, 0x6b, 0x7d, + 0xd7, 0xca, 0xeb, 0x16, 0xf5, 0xd3, 0xc6, 0x67, 0x41, 0x5e, 0x3b, 0x1f, 0x42, 0x5f, 0x0f, 0x29, + 0x67, 0x69, 0x14, 0x62, 0xa3, 0xd0, 0xa1, 0x55, 0xa1, 0xf7, 0x5f, 0x13, 0x8e, 0x9a, 0xe2, 0x27, + 0x77, 0xf2, 0xe6, 0xc7, 0x40, 0xbf, 0x59, 0xe3, 0xf3, 0x01, 0x38, 0x09, 0xf7, 0xa3, 0x4b, 0x9e, + 0xc8, 0xb3, 0xc1, 0x3a, 0xac, 0xda, 0x23, 0xba, 0x25, 0x27, 0x1e, 0xf4, 0xb8, 0x1c, 0x7c, 0xae, + 0xe2, 0xd1, 0xe9, 0x50, 0x91, 0x61, 0x89, 0x17, 0xcc, 0x7f, 0xbd, 0x48, 0x98, 0xaf, 0x72, 0x43, + 0x96, 0xf8, 0x5c, 0x82, 0xeb, 0x7e, 0xc2, 0x79, 0x38, 0xff, 0x2a, 0x12, 0x18, 0x43, 0x8f, 0x96, + 0x24, 0xdb, 0x6d, 0xc6, 0x7e, 0x53, 0x9b, 0xe1, 0xc2, 0x81, 0x06, 0x55, 0xf7, 0x28, 0xd9, 0x94, + 0x3c, 0x83, 0x0e, 0xee, 0x07, 0xb9, 0xa0, 0x8d, 0x5c, 0x30, 0xbe, 0xc9, 0x05, 0x19, 0x4f, 0x33, + 0x2b, 0x5a, 0x38, 0xf0, 0x3e, 0x84, 0x4e, 0x2e, 0x97, 0x3c, 0x74, 0x32, 0x9f, 0x4f, 0xe9, 0x62, + 0xf6, 0xfc, 0xcc, 0xd9, 0x23, 0x0e, 0xf4, 0x5e, 0x4c, 0xe9, 0xec, 0x74, 0xf6, 0xe4, 0x04, 0x25, + 0x86, 0x77, 0x09, 0x4e, 0xfd, 0x84, 0x6b, 0x78, 0x18, 0x5b, 0x78, 0xd4, 0x31, 0x35, 0x77, 0x60, + 0x5a, 0x60, 0x66, 0xd5, 0x31, 0xf3, 0xfe, 0x64, 0xeb, 0x0f, 0xcf, 0x37, 0x81, 0xe0, 0xfa, 0xc0, + 0x4f, 0xd4, 0xcb, 0x55, 0xcd, 0x54, 0xa2, 0x75, 0xb7, 0x9b, 0x99, 0xfc, 0xa5, 0xab, 0xd3, 0xa4, + 0x6c, 0xf3, 0x7f, 0x9a, 0x22, 0xc5, 0x4d, 0xb6, 0xeb, 0x37, 0x59, 0x6e, 0x3e, 0x3d, 0xc5, 0xe9, + 0x93, 0x68, 0x13, 0xaa, 0xfb, 0xd5, 0xa2, 0x5b, 0xf2, 0x1b, 0xde, 0x32, 0xf9, 0xf8, 0xdf, 0xf8, + 0x3e, 0x4f, 0x53, 0xca, 0x84, 0x7a, 0x3f, 0x99, 0xb4, 0x2c, 0x92, 0x1a, 0x3c, 0xbc, 0x0c, 0x92, + 0x28, 0xc4, 0x77, 0x59, 0x5b, 0xfd, 0x1e, 0x28, 0x89, 0xf2, 0x7a, 0xdc, 0xd1, 0x44, 0x2c, 0x6b, + 0xf4, 0x10, 0xba, 0x71, 0x12, 0x7d, 0xcd, 0x7d, 0x81, 0x0f, 0x69, 0x50, 0x56, 0x25, 0x11, 0xb9, + 0x07, 0x1d, 0x11, 0xac, 0x79, 0x2a, 0xd8, 0x3a, 0xd6, 0xfd, 0x70, 0x21, 0x20, 0x1f, 0xc2, 0x2d, + 0x8c, 0x68, 0xae, 0x52, 0x5f, 0x85, 0xda, 0xc3, 0x50, 0xb7, 0x17, 0xbc, 0xbf, 0x59, 0x70, 0x58, + 0x3b, 0x66, 0xac, 0xd2, 0x99, 0xe8, 0xed, 0x0d, 0x90, 0xb4, 0x29, 0x74, 0x91, 0x85, 0x74, 0x83, + 0xa9, 0x3e, 0xab, 0x9b, 0xca, 0x8a, 0x90, 0x3c, 0x82, 0xdb, 0x99, 0xa0, 0x7c, 0x1a, 0x16, 0xea, + 0x36, 0x2d, 0xed, 0x3c, 0xd4, 0x47, 0x70, 0x5b, 0x8d, 0x26, 0x4c, 0xb0, 0xac, 0x7c, 0xa4, 0x6e, + 0x6b, 0x68, 0x49, 0x4f, 0x0d, 0x4b, 0x37, 0x27, 0x90, 0x8c, 0x67, 0x0f, 0xaa, 0x3c, 0x7b, 0x0c, + 0x47, 0xd9, 0x06, 0x2b, 0xf8, 0x76, 0x70, 0xf3, 0x8d, 0x6b, 0x68, 0xa3, 0xe6, 0xd5, 0x6d, 0x02, + 0x6e, 0xb3, 0x71, 0x8d, 0x7c, 0x04, 0xfb, 0x5c, 0xbd, 0x83, 0xba, 0x98, 0x9a, 0xdf, 0xdb, 0x7a, + 0x67, 0xc8, 0x55, 0xaa, 0x95, 0xbc, 0xbf, 0x1b, 0xd0, 0x52, 0x2c, 0xfc, 0x31, 0xd8, 0xa2, 0x68, + 0x74, 0x1e, 0x34, 0x9a, 0x95, 0xd8, 0x0c, 0x95, 0xb3, 0x1f, 0x37, 0xd8, 0xc5, 0x98, 0xc5, 0x8f, + 0x1b, 0xec, 0x64, 0xee, 0x03, 0xac, 0x82, 0x90, 0x9f, 0x6d, 0xd6, 0x2f, 0x75, 0xcf, 0xd6, 0xa2, + 0x25, 0x49, 0x99, 0x6c, 0x15, 0x9f, 0x67, 0x53, 0xef, 0xb8, 0x4c, 0x8f, 0x87, 0xd0, 0x3d, 0x3f, + 0xa1, 0xf3, 0xe9, 0x97, 0x53, 0x4a, 0x9f, 0x53, 0x67, 0x8f, 0x1c, 0x81, 0xf3, 0xe2, 0xe4, 0xd9, + 0x6c, 0x82, 0xf4, 0xa8, 0xa5, 0x86, 0xf7, 0x07, 0x03, 0x06, 0x79, 0x91, 0x7f, 0x81, 0xed, 0xd5, + 0x3d, 0xe8, 0xa4, 0xd9, 0x44, 0x53, 0x64, 0x21, 0x20, 0x8f, 0xe1, 0x4e, 0xde, 0xa3, 0x05, 0xbf, + 0xe3, 0x17, 0xb9, 0x9d, 0x0e, 0x64, 0xc7, 0xaa, 0x7e, 0xab, 0xa8, 0x15, 0xf5, 0x18, 0x51, 0x6f, + 0x15, 0x2d, 0xf9, 0xe0, 0x33, 0x38, 0xac, 0x3d, 0xe5, 0x64, 0x08, 0x67, 0xcf, 0x17, 0xd3, 0xdf, + 0x4c, 0x9f, 0xfc, 0x7a, 0x31, 0x9d, 0x38, 0x7b, 0xb2, 0x43, 0x3b, 0x97, 0x9c, 0x3f, 0x71, 0x0c, + 0x39, 0x3e, 0x3d, 0x99, 0x3d, 0x9b, 0x4e, 0x1c, 0x53, 0x76, 0x6b, 0xf3, 0x5f, 0xcd, 0xce, 0xcf, + 0xa7, 0x13, 0xc7, 0xfa, 0xf4, 0xd6, 0x5f, 0xcc, 0xc1, 0x67, 0x78, 0x08, 0x9a, 0xb0, 0xd3, 0x97, + 0xfb, 0x98, 0x31, 0x1f, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x63, 0x69, 0x52, 0x8b, 0x69, 0x14, + 0x00, 0x00, } diff --git a/plugin.json b/plugin.json index 1ba3988..28ecc76 100644 --- a/plugin.json +++ b/plugin.json @@ -1,6 +1,6 @@ { "id": "json-report", - "version": "0.1.0", + "version": "0.2.0", "name": "JSON Report", "description": "JSON reporting plugin", "install": { @@ -23,7 +23,7 @@ "Execution" ], "gaugeVersionSupport": { - "minimum": "0.7.0", + "minimum": "0.8.0", "maximum": "" } } \ No newline at end of file