updated proto
This commit is contained in:
parent
0c635f7140
commit
3a36b73698
|
@ -1,6 +1,9 @@
|
|||
package apiconfig
|
||||
|
||||
import "encoding/json"
|
||||
import (
|
||||
"encoding/json"
|
||||
"git.servflow.io/servflow/definitions/proto"
|
||||
)
|
||||
|
||||
type RequestType string
|
||||
|
||||
|
@ -121,6 +124,32 @@ type ResponseObject struct {
|
|||
Fields map[string]ResponseObject `json:"fields" yaml:"fields"`
|
||||
}
|
||||
|
||||
func (o *ResponseObject) ToProto() *proto.ResponseObject {
|
||||
resp := proto.ResponseObject{
|
||||
Value: o.Value,
|
||||
Fields: make(map[string]*proto.ResponseObject),
|
||||
}
|
||||
|
||||
for k, v := range o.Fields {
|
||||
resp.Fields[k] = v.ToProto()
|
||||
}
|
||||
|
||||
return &resp
|
||||
}
|
||||
|
||||
func ResponseObjectFromProto(o *proto.ResponseObject) ResponseObject {
|
||||
resp := ResponseObject{
|
||||
Value: o.Value,
|
||||
Fields: make(map[string]ResponseObject),
|
||||
}
|
||||
|
||||
for k, v := range o.Fields {
|
||||
resp.Fields[k] = ResponseObjectFromProto(v)
|
||||
}
|
||||
|
||||
return resp
|
||||
}
|
||||
|
||||
type DatasourceConfig struct {
|
||||
ID string `json:"id" yaml:"id"`
|
||||
Config json.RawMessage `json:"config" yaml:"-"`
|
||||
|
|
|
@ -2,9 +2,10 @@ package apiconfig
|
|||
|
||||
import (
|
||||
"encoding/json"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"gopkg.in/yaml.v3"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestUnmarshalActionYAML(t *testing.T) {
|
||||
|
@ -73,3 +74,47 @@ config:
|
|||
|
||||
assert.Equal(t, expectedConfig, config)
|
||||
}
|
||||
|
||||
func TestResponseObjectToProtoAndBack(t *testing.T) {
|
||||
original := ResponseObject{
|
||||
Value: "root_value",
|
||||
Fields: map[string]ResponseObject{
|
||||
"field1": {
|
||||
Value: "field1_value",
|
||||
Fields: map[string]ResponseObject{
|
||||
"nested1": {
|
||||
Value: "nested1_value",
|
||||
Fields: map[string]ResponseObject{},
|
||||
},
|
||||
},
|
||||
},
|
||||
"field2": {
|
||||
Value: "field2_value",
|
||||
Fields: map[string]ResponseObject{},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
// Convert to proto
|
||||
protoObj := original.ToProto()
|
||||
|
||||
// Convert back from proto
|
||||
result := ResponseObjectFromProto(protoObj)
|
||||
|
||||
// Verify the result matches the original
|
||||
assert.Equal(t, original.Value, result.Value, "Root value should match")
|
||||
assert.Equal(t, len(original.Fields), len(result.Fields), "Should have same number of fields")
|
||||
|
||||
// Check field1
|
||||
assert.Equal(t, original.Fields["field1"].Value, result.Fields["field1"].Value, "field1 value should match")
|
||||
assert.Equal(t, len(original.Fields["field1"].Fields), len(result.Fields["field1"].Fields), "field1 should have same number of nested fields")
|
||||
|
||||
// Check nested field
|
||||
assert.Equal(t, original.Fields["field1"].Fields["nested1"].Value, result.Fields["field1"].Fields["nested1"].Value, "nested1 value should match")
|
||||
|
||||
// Check field2
|
||||
assert.Equal(t, original.Fields["field2"].Value, result.Fields["field2"].Value, "field2 value should match")
|
||||
|
||||
// Complete equality check
|
||||
assert.Equal(t, original, result, "The converted object should be identical to the original")
|
||||
}
|
||||
|
|
|
@ -20,6 +20,52 @@ const (
|
|||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||
)
|
||||
|
||||
type ResponseBuilderType int32
|
||||
|
||||
const (
|
||||
ResponseBuilderType_TYPE_JSON ResponseBuilderType = 0
|
||||
ResponseBuilderType_TYPE_OBJECT ResponseBuilderType = 1
|
||||
)
|
||||
|
||||
// Enum value maps for ResponseBuilderType.
|
||||
var (
|
||||
ResponseBuilderType_name = map[int32]string{
|
||||
0: "TYPE_JSON",
|
||||
1: "TYPE_OBJECT",
|
||||
}
|
||||
ResponseBuilderType_value = map[string]int32{
|
||||
"TYPE_JSON": 0,
|
||||
"TYPE_OBJECT": 1,
|
||||
}
|
||||
)
|
||||
|
||||
func (x ResponseBuilderType) Enum() *ResponseBuilderType {
|
||||
p := new(ResponseBuilderType)
|
||||
*p = x
|
||||
return p
|
||||
}
|
||||
|
||||
func (x ResponseBuilderType) String() string {
|
||||
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
||||
}
|
||||
|
||||
func (ResponseBuilderType) Descriptor() protoreflect.EnumDescriptor {
|
||||
return file_workflow_proto_enumTypes[0].Descriptor()
|
||||
}
|
||||
|
||||
func (ResponseBuilderType) Type() protoreflect.EnumType {
|
||||
return &file_workflow_proto_enumTypes[0]
|
||||
}
|
||||
|
||||
func (x ResponseBuilderType) Number() protoreflect.EnumNumber {
|
||||
return protoreflect.EnumNumber(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use ResponseBuilderType.Descriptor instead.
|
||||
func (ResponseBuilderType) EnumDescriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
type Status int32
|
||||
|
||||
const (
|
||||
|
@ -50,11 +96,11 @@ func (x Status) String() string {
|
|||
}
|
||||
|
||||
func (Status) Descriptor() protoreflect.EnumDescriptor {
|
||||
return file_workflow_proto_enumTypes[0].Descriptor()
|
||||
return file_workflow_proto_enumTypes[1].Descriptor()
|
||||
}
|
||||
|
||||
func (Status) Type() protoreflect.EnumType {
|
||||
return &file_workflow_proto_enumTypes[0]
|
||||
return &file_workflow_proto_enumTypes[1]
|
||||
}
|
||||
|
||||
func (x Status) Number() protoreflect.EnumNumber {
|
||||
|
@ -63,7 +109,7 @@ func (x Status) Number() protoreflect.EnumNumber {
|
|||
|
||||
// Deprecated: Use Status.Descriptor instead.
|
||||
func (Status) EnumDescriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{0}
|
||||
return file_workflow_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
type RegisterRequests struct {
|
||||
|
@ -426,6 +472,61 @@ func (x *GetAllDatabasesRequest) GetIdentifier() string {
|
|||
return ""
|
||||
}
|
||||
|
||||
type ResponseObject struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
|
||||
Fields map[string]*ResponseObject `protobuf:"bytes,2,rep,name=fields,proto3" json:"fields,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
||||
}
|
||||
|
||||
func (x *ResponseObject) Reset() {
|
||||
*x = ResponseObject{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_workflow_proto_msgTypes[7]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *ResponseObject) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*ResponseObject) ProtoMessage() {}
|
||||
|
||||
func (x *ResponseObject) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_workflow_proto_msgTypes[7]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use ResponseObject.ProtoReflect.Descriptor instead.
|
||||
func (*ResponseObject) Descriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{7}
|
||||
}
|
||||
|
||||
func (x *ResponseObject) GetValue() string {
|
||||
if x != nil {
|
||||
return x.Value
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (x *ResponseObject) GetFields() map[string]*ResponseObject {
|
||||
if x != nil {
|
||||
return x.Fields
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type GetAllDatabasesResponse struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
|
@ -437,7 +538,7 @@ type GetAllDatabasesResponse struct {
|
|||
func (x *GetAllDatabasesResponse) Reset() {
|
||||
*x = GetAllDatabasesResponse{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_workflow_proto_msgTypes[7]
|
||||
mi := &file_workflow_proto_msgTypes[8]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
@ -450,7 +551,7 @@ func (x *GetAllDatabasesResponse) String() string {
|
|||
func (*GetAllDatabasesResponse) ProtoMessage() {}
|
||||
|
||||
func (x *GetAllDatabasesResponse) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_workflow_proto_msgTypes[7]
|
||||
mi := &file_workflow_proto_msgTypes[8]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
|
@ -463,7 +564,7 @@ func (x *GetAllDatabasesResponse) ProtoReflect() protoreflect.Message {
|
|||
|
||||
// Deprecated: Use GetAllDatabasesResponse.ProtoReflect.Descriptor instead.
|
||||
func (*GetAllDatabasesResponse) Descriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{7}
|
||||
return file_workflow_proto_rawDescGZIP(), []int{8}
|
||||
}
|
||||
|
||||
func (x *GetAllDatabasesResponse) GetDatabases() []*DatabaseConfig {
|
||||
|
@ -484,7 +585,7 @@ type GetAllWorkflowConfigsRequest struct {
|
|||
func (x *GetAllWorkflowConfigsRequest) Reset() {
|
||||
*x = GetAllWorkflowConfigsRequest{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_workflow_proto_msgTypes[8]
|
||||
mi := &file_workflow_proto_msgTypes[9]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
@ -497,7 +598,7 @@ func (x *GetAllWorkflowConfigsRequest) String() string {
|
|||
func (*GetAllWorkflowConfigsRequest) ProtoMessage() {}
|
||||
|
||||
func (x *GetAllWorkflowConfigsRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_workflow_proto_msgTypes[8]
|
||||
mi := &file_workflow_proto_msgTypes[9]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
|
@ -510,7 +611,7 @@ func (x *GetAllWorkflowConfigsRequest) ProtoReflect() protoreflect.Message {
|
|||
|
||||
// Deprecated: Use GetAllWorkflowConfigsRequest.ProtoReflect.Descriptor instead.
|
||||
func (*GetAllWorkflowConfigsRequest) Descriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{8}
|
||||
return file_workflow_proto_rawDescGZIP(), []int{9}
|
||||
}
|
||||
|
||||
func (x *GetAllWorkflowConfigsRequest) GetIdentifier() string {
|
||||
|
@ -531,7 +632,7 @@ type GetAllWorkflowConfigsResponse struct {
|
|||
func (x *GetAllWorkflowConfigsResponse) Reset() {
|
||||
*x = GetAllWorkflowConfigsResponse{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_workflow_proto_msgTypes[9]
|
||||
mi := &file_workflow_proto_msgTypes[10]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
@ -544,7 +645,7 @@ func (x *GetAllWorkflowConfigsResponse) String() string {
|
|||
func (*GetAllWorkflowConfigsResponse) ProtoMessage() {}
|
||||
|
||||
func (x *GetAllWorkflowConfigsResponse) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_workflow_proto_msgTypes[9]
|
||||
mi := &file_workflow_proto_msgTypes[10]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
|
@ -557,7 +658,7 @@ func (x *GetAllWorkflowConfigsResponse) ProtoReflect() protoreflect.Message {
|
|||
|
||||
// Deprecated: Use GetAllWorkflowConfigsResponse.ProtoReflect.Descriptor instead.
|
||||
func (*GetAllWorkflowConfigsResponse) Descriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{9}
|
||||
return file_workflow_proto_rawDescGZIP(), []int{10}
|
||||
}
|
||||
|
||||
func (x *GetAllWorkflowConfigsResponse) GetConfigs() []*WorkflowConfig {
|
||||
|
@ -588,7 +689,7 @@ type WorkflowConfig struct {
|
|||
func (x *WorkflowConfig) Reset() {
|
||||
*x = WorkflowConfig{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_workflow_proto_msgTypes[10]
|
||||
mi := &file_workflow_proto_msgTypes[11]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
@ -601,7 +702,7 @@ func (x *WorkflowConfig) String() string {
|
|||
func (*WorkflowConfig) ProtoMessage() {}
|
||||
|
||||
func (x *WorkflowConfig) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_workflow_proto_msgTypes[10]
|
||||
mi := &file_workflow_proto_msgTypes[11]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
|
@ -614,7 +715,7 @@ func (x *WorkflowConfig) ProtoReflect() protoreflect.Message {
|
|||
|
||||
// Deprecated: Use WorkflowConfig.ProtoReflect.Descriptor instead.
|
||||
func (*WorkflowConfig) Descriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{10}
|
||||
return file_workflow_proto_rawDescGZIP(), []int{11}
|
||||
}
|
||||
|
||||
func (x *WorkflowConfig) GetId() string {
|
||||
|
@ -695,7 +796,7 @@ type Request struct {
|
|||
func (x *Request) Reset() {
|
||||
*x = Request{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_workflow_proto_msgTypes[11]
|
||||
mi := &file_workflow_proto_msgTypes[12]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
@ -708,7 +809,7 @@ func (x *Request) String() string {
|
|||
func (*Request) ProtoMessage() {}
|
||||
|
||||
func (x *Request) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_workflow_proto_msgTypes[11]
|
||||
mi := &file_workflow_proto_msgTypes[12]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
|
@ -721,7 +822,7 @@ func (x *Request) ProtoReflect() protoreflect.Message {
|
|||
|
||||
// Deprecated: Use Request.ProtoReflect.Descriptor instead.
|
||||
func (*Request) Descriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{11}
|
||||
return file_workflow_proto_rawDescGZIP(), []int{12}
|
||||
}
|
||||
|
||||
func (x *Request) GetNext() string {
|
||||
|
@ -761,7 +862,7 @@ type MCPConfig struct {
|
|||
func (x *MCPConfig) Reset() {
|
||||
*x = MCPConfig{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_workflow_proto_msgTypes[12]
|
||||
mi := &file_workflow_proto_msgTypes[13]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
@ -774,7 +875,7 @@ func (x *MCPConfig) String() string {
|
|||
func (*MCPConfig) ProtoMessage() {}
|
||||
|
||||
func (x *MCPConfig) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_workflow_proto_msgTypes[12]
|
||||
mi := &file_workflow_proto_msgTypes[13]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
|
@ -787,7 +888,7 @@ func (x *MCPConfig) ProtoReflect() protoreflect.Message {
|
|||
|
||||
// Deprecated: Use MCPConfig.ProtoReflect.Descriptor instead.
|
||||
func (*MCPConfig) Descriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{12}
|
||||
return file_workflow_proto_rawDescGZIP(), []int{13}
|
||||
}
|
||||
|
||||
func (x *MCPConfig) GetName() string {
|
||||
|
@ -844,7 +945,7 @@ type MCPArgConfig struct {
|
|||
func (x *MCPArgConfig) Reset() {
|
||||
*x = MCPArgConfig{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_workflow_proto_msgTypes[13]
|
||||
mi := &file_workflow_proto_msgTypes[14]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
@ -857,7 +958,7 @@ func (x *MCPArgConfig) String() string {
|
|||
func (*MCPArgConfig) ProtoMessage() {}
|
||||
|
||||
func (x *MCPArgConfig) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_workflow_proto_msgTypes[13]
|
||||
mi := &file_workflow_proto_msgTypes[14]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
|
@ -870,7 +971,7 @@ func (x *MCPArgConfig) ProtoReflect() protoreflect.Message {
|
|||
|
||||
// Deprecated: Use MCPArgConfig.ProtoReflect.Descriptor instead.
|
||||
func (*MCPArgConfig) Descriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{13}
|
||||
return file_workflow_proto_rawDescGZIP(), []int{14}
|
||||
}
|
||||
|
||||
func (x *MCPArgConfig) GetName() string {
|
||||
|
@ -901,7 +1002,7 @@ type Action struct {
|
|||
func (x *Action) Reset() {
|
||||
*x = Action{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_workflow_proto_msgTypes[14]
|
||||
mi := &file_workflow_proto_msgTypes[15]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
@ -914,7 +1015,7 @@ func (x *Action) String() string {
|
|||
func (*Action) ProtoMessage() {}
|
||||
|
||||
func (x *Action) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_workflow_proto_msgTypes[14]
|
||||
mi := &file_workflow_proto_msgTypes[15]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
|
@ -927,7 +1028,7 @@ func (x *Action) ProtoReflect() protoreflect.Message {
|
|||
|
||||
// Deprecated: Use Action.ProtoReflect.Descriptor instead.
|
||||
func (*Action) Descriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{14}
|
||||
return file_workflow_proto_rawDescGZIP(), []int{15}
|
||||
}
|
||||
|
||||
func (x *Action) GetType() string {
|
||||
|
@ -971,7 +1072,7 @@ type Conditional struct {
|
|||
func (x *Conditional) Reset() {
|
||||
*x = Conditional{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_workflow_proto_msgTypes[15]
|
||||
mi := &file_workflow_proto_msgTypes[16]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
@ -984,7 +1085,7 @@ func (x *Conditional) String() string {
|
|||
func (*Conditional) ProtoMessage() {}
|
||||
|
||||
func (x *Conditional) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_workflow_proto_msgTypes[15]
|
||||
mi := &file_workflow_proto_msgTypes[16]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
|
@ -997,7 +1098,7 @@ func (x *Conditional) ProtoReflect() protoreflect.Message {
|
|||
|
||||
// Deprecated: Use Conditional.ProtoReflect.Descriptor instead.
|
||||
func (*Conditional) Descriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{15}
|
||||
return file_workflow_proto_rawDescGZIP(), []int{16}
|
||||
}
|
||||
|
||||
func (x *Conditional) GetExpression() string {
|
||||
|
@ -1030,12 +1131,14 @@ type Response struct {
|
|||
Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
|
||||
Code int32 `protobuf:"varint,3,opt,name=code,proto3" json:"code,omitempty"`
|
||||
ShouldStream bool `protobuf:"varint,4,opt,name=should_stream,json=shouldStream,proto3" json:"should_stream,omitempty"`
|
||||
BuilderType ResponseBuilderType `protobuf:"varint,5,opt,name=builder_type,json=builderType,proto3,enum=proto.ResponseBuilderType" json:"builder_type,omitempty"`
|
||||
ResponseObject *ResponseObject `protobuf:"bytes,6,opt,name=response_object,json=responseObject,proto3" json:"response_object,omitempty"`
|
||||
}
|
||||
|
||||
func (x *Response) Reset() {
|
||||
*x = Response{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_workflow_proto_msgTypes[16]
|
||||
mi := &file_workflow_proto_msgTypes[17]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
@ -1048,7 +1151,7 @@ func (x *Response) String() string {
|
|||
func (*Response) ProtoMessage() {}
|
||||
|
||||
func (x *Response) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_workflow_proto_msgTypes[16]
|
||||
mi := &file_workflow_proto_msgTypes[17]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
|
@ -1061,7 +1164,7 @@ func (x *Response) ProtoReflect() protoreflect.Message {
|
|||
|
||||
// Deprecated: Use Response.ProtoReflect.Descriptor instead.
|
||||
func (*Response) Descriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{16}
|
||||
return file_workflow_proto_rawDescGZIP(), []int{17}
|
||||
}
|
||||
|
||||
func (x *Response) GetTemplate() []byte {
|
||||
|
@ -1092,6 +1195,20 @@ func (x *Response) GetShouldStream() bool {
|
|||
return false
|
||||
}
|
||||
|
||||
func (x *Response) GetBuilderType() ResponseBuilderType {
|
||||
if x != nil {
|
||||
return x.BuilderType
|
||||
}
|
||||
return ResponseBuilderType_TYPE_JSON
|
||||
}
|
||||
|
||||
func (x *Response) GetResponseObject() *ResponseObject {
|
||||
if x != nil {
|
||||
return x.ResponseObject
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type DatabaseConfig struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
|
@ -1105,7 +1222,7 @@ type DatabaseConfig struct {
|
|||
func (x *DatabaseConfig) Reset() {
|
||||
*x = DatabaseConfig{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_workflow_proto_msgTypes[17]
|
||||
mi := &file_workflow_proto_msgTypes[18]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
|
@ -1118,7 +1235,7 @@ func (x *DatabaseConfig) String() string {
|
|||
func (*DatabaseConfig) ProtoMessage() {}
|
||||
|
||||
func (x *DatabaseConfig) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_workflow_proto_msgTypes[17]
|
||||
mi := &file_workflow_proto_msgTypes[18]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
|
@ -1131,7 +1248,7 @@ func (x *DatabaseConfig) ProtoReflect() protoreflect.Message {
|
|||
|
||||
// Deprecated: Use DatabaseConfig.ProtoReflect.Descriptor instead.
|
||||
func (*DatabaseConfig) Descriptor() ([]byte, []int) {
|
||||
return file_workflow_proto_rawDescGZIP(), []int{17}
|
||||
return file_workflow_proto_rawDescGZIP(), []int{18}
|
||||
}
|
||||
|
||||
func (x *DatabaseConfig) GetId() string {
|
||||
|
@ -1194,146 +1311,168 @@ var file_workflow_proto_rawDesc = []byte{
|
|||
0x74, 0x41, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x73, 0x52, 0x65, 0x71,
|
||||
0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69,
|
||||
0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69,
|
||||
0x66, 0x69, 0x65, 0x72, 0x22, 0x4e, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x44, 0x61,
|
||||
0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
||||
0x33, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
|
||||
0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x62,
|
||||
0x61, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x09, 0x64, 0x61, 0x74, 0x61, 0x62,
|
||||
0x61, 0x73, 0x65, 0x73, 0x22, 0x3e, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x57, 0x6f,
|
||||
0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x52, 0x65, 0x71,
|
||||
0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69,
|
||||
0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69,
|
||||
0x66, 0x69, 0x65, 0x72, 0x22, 0x50, 0x0a, 0x1d, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x57, 0x6f,
|
||||
0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x52, 0x65, 0x73,
|
||||
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73,
|
||||
0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x57,
|
||||
0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x07, 0x63,
|
||||
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x22, 0x94, 0x05, 0x0a, 0x0e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
|
||||
0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
|
||||
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x23, 0x0a, 0x0b, 0x6c, 0x69, 0x73,
|
||||
0x74, 0x65, 0x6e, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x02,
|
||||
0x18, 0x01, 0x52, 0x0a, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x50, 0x61, 0x74, 0x68, 0x12, 0x1a,
|
||||
0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x02,
|
||||
0x18, 0x01, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x28, 0x0a, 0x07, 0x72, 0x65,
|
||||
0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x72,
|
||||
0x6f, 0x74, 0x6f, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x07, 0x72, 0x65, 0x71,
|
||||
0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18,
|
||||
0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x57, 0x6f,
|
||||
0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x41, 0x63, 0x74,
|
||||
0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f,
|
||||
0x6e, 0x73, 0x12, 0x4b, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61,
|
||||
0x6c, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
0x66, 0x69, 0x65, 0x72, 0x22, 0xb3, 0x01, 0x0a, 0x0e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
||||
0x65, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
|
||||
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x39, 0x0a,
|
||||
0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21, 0x2e,
|
||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4f, 0x62,
|
||||
0x6a, 0x65, 0x63, 0x74, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79,
|
||||
0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x1a, 0x50, 0x0a, 0x0b, 0x46, 0x69, 0x65, 0x6c,
|
||||
0x64, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
|
||||
0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2b, 0x0a, 0x05, 0x76, 0x61, 0x6c,
|
||||
0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x52,
|
||||
0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x4e, 0x0a, 0x17, 0x47, 0x65,
|
||||
0x74, 0x41, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x73, 0x52, 0x65, 0x73,
|
||||
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x33, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73,
|
||||
0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
0x2e, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52,
|
||||
0x09, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x73, 0x22, 0x3e, 0x0a, 0x1c, 0x47, 0x65,
|
||||
0x74, 0x41, 0x6c, 0x6c, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66,
|
||||
0x69, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x64,
|
||||
0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
|
||||
0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x22, 0x50, 0x0a, 0x1d, 0x47, 0x65,
|
||||
0x74, 0x41, 0x6c, 0x6c, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66,
|
||||
0x69, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2f, 0x0a, 0x07, 0x63,
|
||||
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70,
|
||||
0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e,
|
||||
0x66, 0x69, 0x67, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x22, 0x94, 0x05, 0x0a,
|
||||
0x0e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12,
|
||||
0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
|
||||
0x23, 0x0a, 0x0b, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02,
|
||||
0x20, 0x01, 0x28, 0x09, 0x42, 0x02, 0x18, 0x01, 0x52, 0x0a, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e,
|
||||
0x50, 0x61, 0x74, 0x68, 0x12, 0x1a, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x03,
|
||||
0x20, 0x01, 0x28, 0x09, 0x42, 0x02, 0x18, 0x01, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64,
|
||||
0x12, 0x28, 0x0a, 0x07, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
|
||||
0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
||||
0x74, 0x52, 0x07, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x07, 0x61, 0x63,
|
||||
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x70, 0x72,
|
||||
0x6f, 0x74, 0x6f, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66,
|
||||
0x69, 0x67, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
|
||||
0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x4b, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x64,
|
||||
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27,
|
||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x43,
|
||||
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61,
|
||||
0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69,
|
||||
0x6f, 0x6e, 0x61, 0x6c, 0x73, 0x12, 0x42, 0x0a, 0x09, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
||||
0x65, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e,
|
||||
0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72,
|
||||
0x79, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x73, 0x12,
|
||||
0x42, 0x0a, 0x09, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x18, 0x07, 0x20, 0x03,
|
||||
0x28, 0x0b, 0x32, 0x24, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x66,
|
||||
0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
||||
0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
||||
0x73, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 0x20,
|
||||
0x01, 0x28, 0x0e, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x53, 0x74, 0x61, 0x74,
|
||||
0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x03, 0x6d, 0x63,
|
||||
0x70, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
|
||||
0x4d, 0x43, 0x50, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x03, 0x6d, 0x63, 0x70, 0x1a, 0x49,
|
||||
0x0a, 0x0c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
|
||||
0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
|
||||
0x12, 0x23, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
||||
0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x05,
|
||||
0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x53, 0x0a, 0x11, 0x43, 0x6f, 0x6e,
|
||||
0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
|
||||
0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
|
||||
0x12, 0x28, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
||||
0x12, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f,
|
||||
0x6e, 0x61, 0x6c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x4d,
|
||||
0x0a, 0x0e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79,
|
||||
0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
|
||||
0x65, 0x79, 0x12, 0x25, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
|
||||
0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
||||
0x73, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x56, 0x0a,
|
||||
0x07, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x65, 0x78, 0x74,
|
||||
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x65, 0x78, 0x74, 0x12, 0x1f, 0x0a, 0x0b,
|
||||
0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x0a, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x50, 0x61, 0x74, 0x68, 0x12, 0x16, 0x0a,
|
||||
0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d,
|
||||
0x65, 0x74, 0x68, 0x6f, 0x64, 0x22, 0x87, 0x02, 0x0a, 0x09, 0x4d, 0x43, 0x50, 0x43, 0x6f, 0x6e,
|
||||
0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72,
|
||||
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65,
|
||||
0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2e, 0x0a, 0x04, 0x61, 0x72, 0x67,
|
||||
0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
|
||||
0x4d, 0x43, 0x50, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x41, 0x72, 0x67, 0x73, 0x45, 0x6e,
|
||||
0x74, 0x72, 0x79, 0x52, 0x04, 0x61, 0x72, 0x67, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73,
|
||||
0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c,
|
||||
0x74, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
|
||||
0x52, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c,
|
||||
0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
||||
0x64, 0x1a, 0x4c, 0x0a, 0x09, 0x41, 0x72, 0x67, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
|
||||
0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
|
||||
0x12, 0x29, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
||||
0x13, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x4d, 0x43, 0x50, 0x41, 0x72, 0x67, 0x43, 0x6f,
|
||||
0x6e, 0x66, 0x69, 0x67, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22,
|
||||
0x36, 0x0a, 0x0c, 0x4d, 0x43, 0x50, 0x41, 0x72, 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12,
|
||||
0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
|
||||
0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x5c, 0x0a, 0x06, 0x41, 0x63, 0x74, 0x69, 0x6f,
|
||||
0x6e, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||
0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18,
|
||||
0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, 0x0a,
|
||||
0x04, 0x6e, 0x65, 0x78, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x65, 0x78,
|
||||
0x74, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x61, 0x69, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||
0x04, 0x66, 0x61, 0x69, 0x6c, 0x22, 0x6f, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69,
|
||||
0x6f, 0x6e, 0x61, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
|
||||
0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x78, 0x70, 0x72, 0x65, 0x73,
|
||||
0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x70, 0x61,
|
||||
0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x50,
|
||||
0x61, 0x74, 0x68, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x70,
|
||||
0x61, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x6e, 0x76, 0x61, 0x6c,
|
||||
0x69, 0x64, 0x50, 0x61, 0x74, 0x68, 0x22, 0x73, 0x0a, 0x08, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
||||
0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x18, 0x01,
|
||||
0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x12, 0x12,
|
||||
0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79,
|
||||
0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05,
|
||||
0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64,
|
||||
0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x73,
|
||||
0x68, 0x6f, 0x75, 0x6c, 0x64, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x22, 0x4c, 0x0a, 0x0e, 0x44,
|
||||
0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x0e, 0x0a,
|
||||
0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a,
|
||||
0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x63,
|
||||
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20,
|
||||
0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x2a, 0x22, 0x0a, 0x06, 0x53, 0x74, 0x61,
|
||||
0x74, 0x75, 0x73, 0x12, 0x0a, 0x0a, 0x06, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x00, 0x12,
|
||||
0x0c, 0x0a, 0x08, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x32, 0xab, 0x03,
|
||||
0x0a, 0x0f, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
|
||||
0x65, 0x12, 0x64, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x57, 0x6f, 0x72, 0x6b, 0x66,
|
||||
0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12, 0x23, 0x2e, 0x70, 0x72, 0x6f,
|
||||
0x74, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f,
|
||||
0x77, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
||||
0x24, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x57, 0x6f,
|
||||
0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x52, 0x65, 0x73,
|
||||
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x41, 0x6c,
|
||||
0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x73, 0x12, 0x1d, 0x2e, 0x70, 0x72, 0x6f,
|
||||
0x74, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73,
|
||||
0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
||||
0x6f, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65,
|
||||
0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x09, 0x47,
|
||||
0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x17, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
||||
0x74, 0x1a, 0x18, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63,
|
||||
0x72, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x50, 0x0a,
|
||||
0x12, 0x47, 0x65, 0x74, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x51, 0x75, 0x6f,
|
||||
0x74, 0x61, 0x73, 0x12, 0x1f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x41,
|
||||
0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x52, 0x65, 0x71,
|
||||
0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x51, 0x75, 0x6f,
|
||||
0x74, 0x61, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x00, 0x12,
|
||||
0x4a, 0x0a, 0x0c, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x12,
|
||||
0x17, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
|
||||
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x73, 0x1a, 0x1f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
||||
0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x2c, 0x5a, 0x2a, 0x67,
|
||||
0x69, 0x74, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x69, 0x6f, 0x2f, 0x73,
|
||||
0x65, 0x72, 0x76, 0x66, 0x6c, 0x6f, 0x77, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69,
|
||||
0x6f, 0x6e, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
0x33,
|
||||
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09,
|
||||
0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x06, 0x73, 0x74, 0x61,
|
||||
0x74, 0x75, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
||||
0x6f, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
|
||||
0x12, 0x22, 0x0a, 0x03, 0x6d, 0x63, 0x70, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e,
|
||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x4d, 0x43, 0x50, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52,
|
||||
0x03, 0x6d, 0x63, 0x70, 0x1a, 0x49, 0x0a, 0x0c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x45,
|
||||
0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x23, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
|
||||
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x41, 0x63,
|
||||
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a,
|
||||
0x53, 0x0a, 0x11, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x73, 0x45,
|
||||
0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x28, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
|
||||
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x43, 0x6f,
|
||||
0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
|
||||
0x3a, 0x02, 0x38, 0x01, 0x1a, 0x4d, 0x0a, 0x0e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
||||
0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
|
||||
0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x25, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
|
||||
0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
|
||||
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
|
||||
0x02, 0x38, 0x01, 0x22, 0x56, 0x0a, 0x07, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12,
|
||||
0x0a, 0x04, 0x6e, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x65,
|
||||
0x78, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x5f, 0x70, 0x61, 0x74,
|
||||
0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x50,
|
||||
0x61, 0x74, 0x68, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x03, 0x20,
|
||||
0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x22, 0x87, 0x02, 0x0a, 0x09,
|
||||
0x4d, 0x43, 0x50, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
|
||||
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a,
|
||||
0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
|
||||
0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12,
|
||||
0x2e, 0x0a, 0x04, 0x61, 0x72, 0x67, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
|
||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x4d, 0x43, 0x50, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e,
|
||||
0x41, 0x72, 0x67, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x61, 0x72, 0x67, 0x73, 0x12,
|
||||
0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||
0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74,
|
||||
0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74, 0x12, 0x18, 0x0a,
|
||||
0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
|
||||
0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x1a, 0x4c, 0x0a, 0x09, 0x41, 0x72, 0x67, 0x73, 0x45,
|
||||
0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x29, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
|
||||
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x4d, 0x43,
|
||||
0x50, 0x41, 0x72, 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
|
||||
0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x36, 0x0a, 0x0c, 0x4d, 0x43, 0x50, 0x41, 0x72, 0x67, 0x43,
|
||||
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
|
||||
0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70,
|
||||
0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x5c, 0x0a,
|
||||
0x06, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18,
|
||||
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63,
|
||||
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x63, 0x6f, 0x6e,
|
||||
0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x65, 0x78, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x04, 0x6e, 0x65, 0x78, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x61, 0x69, 0x6c, 0x18,
|
||||
0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x66, 0x61, 0x69, 0x6c, 0x22, 0x6f, 0x0a, 0x0b, 0x43,
|
||||
0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x65, 0x78,
|
||||
0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
|
||||
0x65, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x61,
|
||||
0x6c, 0x69, 0x64, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
|
||||
0x76, 0x61, 0x6c, 0x69, 0x64, 0x50, 0x61, 0x74, 0x68, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x6e, 0x76,
|
||||
0x61, 0x6c, 0x69, 0x64, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||
0x0b, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x50, 0x61, 0x74, 0x68, 0x22, 0xf2, 0x01, 0x0a,
|
||||
0x08, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x65, 0x6d,
|
||||
0x70, 0x6c, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x74, 0x65, 0x6d,
|
||||
0x70, 0x6c, 0x61, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20,
|
||||
0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64,
|
||||
0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x23, 0x0a,
|
||||
0x0d, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x18, 0x04,
|
||||
0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x53, 0x74, 0x72, 0x65,
|
||||
0x61, 0x6d, 0x12, 0x3d, 0x0a, 0x0c, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79,
|
||||
0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72,
|
||||
0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70,
|
||||
0x65, 0x12, 0x3e, 0x0a, 0x0f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x6f, 0x62,
|
||||
0x6a, 0x65, 0x63, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x72, 0x6f,
|
||||
0x74, 0x6f, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4f, 0x62, 0x6a, 0x65, 0x63,
|
||||
0x74, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4f, 0x62, 0x6a, 0x65, 0x63,
|
||||
0x74, 0x22, 0x4c, 0x0a, 0x0e, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x43, 0x6f, 0x6e,
|
||||
0x66, 0x69, 0x67, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||
0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x02, 0x20,
|
||||
0x01, 0x28, 0x0c, 0x52, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x74,
|
||||
0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x2a,
|
||||
0x35, 0x0a, 0x13, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x75, 0x69, 0x6c, 0x64,
|
||||
0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0d, 0x0a, 0x09, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4a,
|
||||
0x53, 0x4f, 0x4e, 0x10, 0x00, 0x12, 0x0f, 0x0a, 0x0b, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x42,
|
||||
0x4a, 0x45, 0x43, 0x54, 0x10, 0x01, 0x2a, 0x22, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
|
||||
0x12, 0x0a, 0x0a, 0x06, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08,
|
||||
0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x32, 0xab, 0x03, 0x0a, 0x0f, 0x57,
|
||||
0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x64,
|
||||
0x0a, 0x15, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77,
|
||||
0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x12, 0x23, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
|
||||
0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x57, 0x6f, 0x72, 0x6b, 0x66, 0x6c, 0x6f, 0x77, 0x43, 0x6f,
|
||||
0x6e, 0x66, 0x69, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x70,
|
||||
0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x57, 0x6f, 0x72, 0x6b, 0x66,
|
||||
0x6c, 0x6f, 0x77, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
||||
0x73, 0x65, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x44, 0x61,
|
||||
0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x73, 0x12, 0x1d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
|
||||
0x47, 0x65, 0x74, 0x41, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x73, 0x52,
|
||||
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x47,
|
||||
0x65, 0x74, 0x41, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x73, 0x52, 0x65,
|
||||
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x53,
|
||||
0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x17, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x47, 0x65,
|
||||
0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18,
|
||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74,
|
||||
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x50, 0x0a, 0x12, 0x47, 0x65,
|
||||
0x74, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x73,
|
||||
0x12, 0x1f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x76, 0x61, 0x69,
|
||||
0x6c, 0x61, 0x62, 0x6c, 0x65, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
||||
0x74, 0x1a, 0x17, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x49,
|
||||
0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x00, 0x12, 0x4a, 0x0a, 0x0c,
|
||||
0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x12, 0x17, 0x2e, 0x70,
|
||||
0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71,
|
||||
0x75, 0x65, 0x73, 0x74, 0x73, 0x1a, 0x1f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x52, 0x65,
|
||||
0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x73, 0x52, 0x65,
|
||||
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x2c, 0x5a, 0x2a, 0x67, 0x69, 0x74, 0x2e,
|
||||
0x73, 0x65, 0x72, 0x76, 0x66, 0x6c, 0x6f, 0x77, 0x2e, 0x69, 0x6f, 0x2f, 0x73, 0x65, 0x72, 0x76,
|
||||
0x66, 0x6c, 0x6f, 0x77, 0x2f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73,
|
||||
0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
|
@ -1348,62 +1487,69 @@ func file_workflow_proto_rawDescGZIP() []byte {
|
|||
return file_workflow_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_workflow_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
||||
var file_workflow_proto_msgTypes = make([]protoimpl.MessageInfo, 22)
|
||||
var file_workflow_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
|
||||
var file_workflow_proto_msgTypes = make([]protoimpl.MessageInfo, 24)
|
||||
var file_workflow_proto_goTypes = []any{
|
||||
(Status)(0), // 0: proto.Status
|
||||
(*RegisterRequests)(nil), // 1: proto.RegisterRequests
|
||||
(*RegisterRequestsResponse)(nil), // 2: proto.RegisterRequestsResponse
|
||||
(*GetAvailableQuotaRequest)(nil), // 3: proto.GetAvailableQuotaRequest
|
||||
(*QuotaInformation)(nil), // 4: proto.QuotaInformation
|
||||
(*GetSecretRequest)(nil), // 5: proto.GetSecretRequest
|
||||
(*GetSecretResponse)(nil), // 6: proto.GetSecretResponse
|
||||
(*GetAllDatabasesRequest)(nil), // 7: proto.GetAllDatabasesRequest
|
||||
(*GetAllDatabasesResponse)(nil), // 8: proto.GetAllDatabasesResponse
|
||||
(*GetAllWorkflowConfigsRequest)(nil), // 9: proto.GetAllWorkflowConfigsRequest
|
||||
(*GetAllWorkflowConfigsResponse)(nil), // 10: proto.GetAllWorkflowConfigsResponse
|
||||
(*WorkflowConfig)(nil), // 11: proto.WorkflowConfig
|
||||
(*Request)(nil), // 12: proto.Request
|
||||
(*MCPConfig)(nil), // 13: proto.MCPConfig
|
||||
(*MCPArgConfig)(nil), // 14: proto.MCPArgConfig
|
||||
(*Action)(nil), // 15: proto.Action
|
||||
(*Conditional)(nil), // 16: proto.Conditional
|
||||
(*Response)(nil), // 17: proto.Response
|
||||
(*DatabaseConfig)(nil), // 18: proto.DatabaseConfig
|
||||
nil, // 19: proto.WorkflowConfig.ActionsEntry
|
||||
nil, // 20: proto.WorkflowConfig.ConditionalsEntry
|
||||
nil, // 21: proto.WorkflowConfig.ResponsesEntry
|
||||
nil, // 22: proto.MCPConfig.ArgsEntry
|
||||
(ResponseBuilderType)(0), // 0: proto.ResponseBuilderType
|
||||
(Status)(0), // 1: proto.Status
|
||||
(*RegisterRequests)(nil), // 2: proto.RegisterRequests
|
||||
(*RegisterRequestsResponse)(nil), // 3: proto.RegisterRequestsResponse
|
||||
(*GetAvailableQuotaRequest)(nil), // 4: proto.GetAvailableQuotaRequest
|
||||
(*QuotaInformation)(nil), // 5: proto.QuotaInformation
|
||||
(*GetSecretRequest)(nil), // 6: proto.GetSecretRequest
|
||||
(*GetSecretResponse)(nil), // 7: proto.GetSecretResponse
|
||||
(*GetAllDatabasesRequest)(nil), // 8: proto.GetAllDatabasesRequest
|
||||
(*ResponseObject)(nil), // 9: proto.ResponseObject
|
||||
(*GetAllDatabasesResponse)(nil), // 10: proto.GetAllDatabasesResponse
|
||||
(*GetAllWorkflowConfigsRequest)(nil), // 11: proto.GetAllWorkflowConfigsRequest
|
||||
(*GetAllWorkflowConfigsResponse)(nil), // 12: proto.GetAllWorkflowConfigsResponse
|
||||
(*WorkflowConfig)(nil), // 13: proto.WorkflowConfig
|
||||
(*Request)(nil), // 14: proto.Request
|
||||
(*MCPConfig)(nil), // 15: proto.MCPConfig
|
||||
(*MCPArgConfig)(nil), // 16: proto.MCPArgConfig
|
||||
(*Action)(nil), // 17: proto.Action
|
||||
(*Conditional)(nil), // 18: proto.Conditional
|
||||
(*Response)(nil), // 19: proto.Response
|
||||
(*DatabaseConfig)(nil), // 20: proto.DatabaseConfig
|
||||
nil, // 21: proto.ResponseObject.FieldsEntry
|
||||
nil, // 22: proto.WorkflowConfig.ActionsEntry
|
||||
nil, // 23: proto.WorkflowConfig.ConditionalsEntry
|
||||
nil, // 24: proto.WorkflowConfig.ResponsesEntry
|
||||
nil, // 25: proto.MCPConfig.ArgsEntry
|
||||
}
|
||||
var file_workflow_proto_depIdxs = []int32{
|
||||
18, // 0: proto.GetAllDatabasesResponse.databases:type_name -> proto.DatabaseConfig
|
||||
11, // 1: proto.GetAllWorkflowConfigsResponse.configs:type_name -> proto.WorkflowConfig
|
||||
12, // 2: proto.WorkflowConfig.request:type_name -> proto.Request
|
||||
19, // 3: proto.WorkflowConfig.actions:type_name -> proto.WorkflowConfig.ActionsEntry
|
||||
20, // 4: proto.WorkflowConfig.conditionals:type_name -> proto.WorkflowConfig.ConditionalsEntry
|
||||
21, // 5: proto.WorkflowConfig.responses:type_name -> proto.WorkflowConfig.ResponsesEntry
|
||||
0, // 6: proto.WorkflowConfig.status:type_name -> proto.Status
|
||||
13, // 7: proto.WorkflowConfig.mcp:type_name -> proto.MCPConfig
|
||||
22, // 8: proto.MCPConfig.args:type_name -> proto.MCPConfig.ArgsEntry
|
||||
15, // 9: proto.WorkflowConfig.ActionsEntry.value:type_name -> proto.Action
|
||||
16, // 10: proto.WorkflowConfig.ConditionalsEntry.value:type_name -> proto.Conditional
|
||||
17, // 11: proto.WorkflowConfig.ResponsesEntry.value:type_name -> proto.Response
|
||||
14, // 12: proto.MCPConfig.ArgsEntry.value:type_name -> proto.MCPArgConfig
|
||||
9, // 13: proto.WorkflowService.GetAllWorkflowConfigs:input_type -> proto.GetAllWorkflowConfigsRequest
|
||||
7, // 14: proto.WorkflowService.GetAllDatabases:input_type -> proto.GetAllDatabasesRequest
|
||||
5, // 15: proto.WorkflowService.GetSecret:input_type -> proto.GetSecretRequest
|
||||
3, // 16: proto.WorkflowService.GetAvailableQuotas:input_type -> proto.GetAvailableQuotaRequest
|
||||
1, // 17: proto.WorkflowService.UpdateMetric:input_type -> proto.RegisterRequests
|
||||
10, // 18: proto.WorkflowService.GetAllWorkflowConfigs:output_type -> proto.GetAllWorkflowConfigsResponse
|
||||
8, // 19: proto.WorkflowService.GetAllDatabases:output_type -> proto.GetAllDatabasesResponse
|
||||
6, // 20: proto.WorkflowService.GetSecret:output_type -> proto.GetSecretResponse
|
||||
4, // 21: proto.WorkflowService.GetAvailableQuotas:output_type -> proto.QuotaInformation
|
||||
2, // 22: proto.WorkflowService.UpdateMetric:output_type -> proto.RegisterRequestsResponse
|
||||
18, // [18:23] is the sub-list for method output_type
|
||||
13, // [13:18] is the sub-list for method input_type
|
||||
13, // [13:13] is the sub-list for extension type_name
|
||||
13, // [13:13] is the sub-list for extension extendee
|
||||
0, // [0:13] is the sub-list for field type_name
|
||||
21, // 0: proto.ResponseObject.fields:type_name -> proto.ResponseObject.FieldsEntry
|
||||
20, // 1: proto.GetAllDatabasesResponse.databases:type_name -> proto.DatabaseConfig
|
||||
13, // 2: proto.GetAllWorkflowConfigsResponse.configs:type_name -> proto.WorkflowConfig
|
||||
14, // 3: proto.WorkflowConfig.request:type_name -> proto.Request
|
||||
22, // 4: proto.WorkflowConfig.actions:type_name -> proto.WorkflowConfig.ActionsEntry
|
||||
23, // 5: proto.WorkflowConfig.conditionals:type_name -> proto.WorkflowConfig.ConditionalsEntry
|
||||
24, // 6: proto.WorkflowConfig.responses:type_name -> proto.WorkflowConfig.ResponsesEntry
|
||||
1, // 7: proto.WorkflowConfig.status:type_name -> proto.Status
|
||||
15, // 8: proto.WorkflowConfig.mcp:type_name -> proto.MCPConfig
|
||||
25, // 9: proto.MCPConfig.args:type_name -> proto.MCPConfig.ArgsEntry
|
||||
0, // 10: proto.Response.builder_type:type_name -> proto.ResponseBuilderType
|
||||
9, // 11: proto.Response.response_object:type_name -> proto.ResponseObject
|
||||
9, // 12: proto.ResponseObject.FieldsEntry.value:type_name -> proto.ResponseObject
|
||||
17, // 13: proto.WorkflowConfig.ActionsEntry.value:type_name -> proto.Action
|
||||
18, // 14: proto.WorkflowConfig.ConditionalsEntry.value:type_name -> proto.Conditional
|
||||
19, // 15: proto.WorkflowConfig.ResponsesEntry.value:type_name -> proto.Response
|
||||
16, // 16: proto.MCPConfig.ArgsEntry.value:type_name -> proto.MCPArgConfig
|
||||
11, // 17: proto.WorkflowService.GetAllWorkflowConfigs:input_type -> proto.GetAllWorkflowConfigsRequest
|
||||
8, // 18: proto.WorkflowService.GetAllDatabases:input_type -> proto.GetAllDatabasesRequest
|
||||
6, // 19: proto.WorkflowService.GetSecret:input_type -> proto.GetSecretRequest
|
||||
4, // 20: proto.WorkflowService.GetAvailableQuotas:input_type -> proto.GetAvailableQuotaRequest
|
||||
2, // 21: proto.WorkflowService.UpdateMetric:input_type -> proto.RegisterRequests
|
||||
12, // 22: proto.WorkflowService.GetAllWorkflowConfigs:output_type -> proto.GetAllWorkflowConfigsResponse
|
||||
10, // 23: proto.WorkflowService.GetAllDatabases:output_type -> proto.GetAllDatabasesResponse
|
||||
7, // 24: proto.WorkflowService.GetSecret:output_type -> proto.GetSecretResponse
|
||||
5, // 25: proto.WorkflowService.GetAvailableQuotas:output_type -> proto.QuotaInformation
|
||||
3, // 26: proto.WorkflowService.UpdateMetric:output_type -> proto.RegisterRequestsResponse
|
||||
22, // [22:27] is the sub-list for method output_type
|
||||
17, // [17:22] is the sub-list for method input_type
|
||||
17, // [17:17] is the sub-list for extension type_name
|
||||
17, // [17:17] is the sub-list for extension extendee
|
||||
0, // [0:17] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_workflow_proto_init() }
|
||||
|
@ -1497,7 +1643,7 @@ func file_workflow_proto_init() {
|
|||
}
|
||||
}
|
||||
file_workflow_proto_msgTypes[7].Exporter = func(v any, i int) any {
|
||||
switch v := v.(*GetAllDatabasesResponse); i {
|
||||
switch v := v.(*ResponseObject); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
|
@ -1509,7 +1655,7 @@ func file_workflow_proto_init() {
|
|||
}
|
||||
}
|
||||
file_workflow_proto_msgTypes[8].Exporter = func(v any, i int) any {
|
||||
switch v := v.(*GetAllWorkflowConfigsRequest); i {
|
||||
switch v := v.(*GetAllDatabasesResponse); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
|
@ -1521,7 +1667,7 @@ func file_workflow_proto_init() {
|
|||
}
|
||||
}
|
||||
file_workflow_proto_msgTypes[9].Exporter = func(v any, i int) any {
|
||||
switch v := v.(*GetAllWorkflowConfigsResponse); i {
|
||||
switch v := v.(*GetAllWorkflowConfigsRequest); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
|
@ -1533,7 +1679,7 @@ func file_workflow_proto_init() {
|
|||
}
|
||||
}
|
||||
file_workflow_proto_msgTypes[10].Exporter = func(v any, i int) any {
|
||||
switch v := v.(*WorkflowConfig); i {
|
||||
switch v := v.(*GetAllWorkflowConfigsResponse); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
|
@ -1545,7 +1691,7 @@ func file_workflow_proto_init() {
|
|||
}
|
||||
}
|
||||
file_workflow_proto_msgTypes[11].Exporter = func(v any, i int) any {
|
||||
switch v := v.(*Request); i {
|
||||
switch v := v.(*WorkflowConfig); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
|
@ -1557,7 +1703,7 @@ func file_workflow_proto_init() {
|
|||
}
|
||||
}
|
||||
file_workflow_proto_msgTypes[12].Exporter = func(v any, i int) any {
|
||||
switch v := v.(*MCPConfig); i {
|
||||
switch v := v.(*Request); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
|
@ -1569,7 +1715,7 @@ func file_workflow_proto_init() {
|
|||
}
|
||||
}
|
||||
file_workflow_proto_msgTypes[13].Exporter = func(v any, i int) any {
|
||||
switch v := v.(*MCPArgConfig); i {
|
||||
switch v := v.(*MCPConfig); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
|
@ -1581,7 +1727,7 @@ func file_workflow_proto_init() {
|
|||
}
|
||||
}
|
||||
file_workflow_proto_msgTypes[14].Exporter = func(v any, i int) any {
|
||||
switch v := v.(*Action); i {
|
||||
switch v := v.(*MCPArgConfig); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
|
@ -1593,7 +1739,7 @@ func file_workflow_proto_init() {
|
|||
}
|
||||
}
|
||||
file_workflow_proto_msgTypes[15].Exporter = func(v any, i int) any {
|
||||
switch v := v.(*Conditional); i {
|
||||
switch v := v.(*Action); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
|
@ -1605,7 +1751,7 @@ func file_workflow_proto_init() {
|
|||
}
|
||||
}
|
||||
file_workflow_proto_msgTypes[16].Exporter = func(v any, i int) any {
|
||||
switch v := v.(*Response); i {
|
||||
switch v := v.(*Conditional); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
|
@ -1617,6 +1763,18 @@ func file_workflow_proto_init() {
|
|||
}
|
||||
}
|
||||
file_workflow_proto_msgTypes[17].Exporter = func(v any, i int) any {
|
||||
switch v := v.(*Response); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
return &v.sizeCache
|
||||
case 2:
|
||||
return &v.unknownFields
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_workflow_proto_msgTypes[18].Exporter = func(v any, i int) any {
|
||||
switch v := v.(*DatabaseConfig); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
|
@ -1634,8 +1792,8 @@ func file_workflow_proto_init() {
|
|||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_workflow_proto_rawDesc,
|
||||
NumEnums: 1,
|
||||
NumMessages: 22,
|
||||
NumEnums: 2,
|
||||
NumMessages: 24,
|
||||
NumExtensions: 0,
|
||||
NumServices: 1,
|
||||
},
|
||||
|
|
|
@ -45,6 +45,16 @@ message GetAllDatabasesRequest{
|
|||
string identifier = 1;
|
||||
}
|
||||
|
||||
message ResponseObject{
|
||||
string value = 1;
|
||||
map<string, ResponseObject> fields = 2;
|
||||
}
|
||||
|
||||
enum ResponseBuilderType {
|
||||
TYPE_JSON = 0;
|
||||
TYPE_OBJECT = 1;
|
||||
}
|
||||
|
||||
message GetAllDatabasesResponse{
|
||||
repeated DatabaseConfig databases = 1;
|
||||
}
|
||||
|
@ -111,6 +121,8 @@ message Response {
|
|||
string type = 2;
|
||||
int32 code = 3;
|
||||
bool should_stream = 4;
|
||||
ResponseBuilderType builder_type = 5;
|
||||
ResponseObject response_object = 6;
|
||||
}
|
||||
|
||||
message DatabaseConfig {
|
||||
|
|
Loading…
Reference in New Issue