|
|
|
@ -78,6 +78,9 @@ const (
|
|
|
|
// Run one directory pin decorator (DirectoryExtensions.PinDecorators):
|
|
|
|
// Run one directory pin decorator (DirectoryExtensions.PinDecorators):
|
|
|
|
// payload = DirectoryPinDecoratorRequest / DirectoryPinDecoratorResponse.
|
|
|
|
// payload = DirectoryPinDecoratorRequest / DirectoryPinDecoratorResponse.
|
|
|
|
Hook_HOOK_DIRECTORY_PIN_DECORATOR Hook = 15
|
|
|
|
Hook_HOOK_DIRECTORY_PIN_DECORATOR Hook = 15
|
|
|
|
|
|
|
|
// Run one keyed PluginRegistration.LoadOnce callback:
|
|
|
|
|
|
|
|
// payload = LoadOnceRequest / LoadOnceResponse.
|
|
|
|
|
|
|
|
Hook_HOOK_LOAD_ONCE Hook = 16
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// Enum value maps for Hook.
|
|
|
|
// Enum value maps for Hook.
|
|
|
|
@ -99,6 +102,7 @@ var (
|
|
|
|
13: "HOOK_BRIDGE_CALL",
|
|
|
|
13: "HOOK_BRIDGE_CALL",
|
|
|
|
14: "HOOK_DIRECTORY_PANEL_SECTION",
|
|
|
|
14: "HOOK_DIRECTORY_PANEL_SECTION",
|
|
|
|
15: "HOOK_DIRECTORY_PIN_DECORATOR",
|
|
|
|
15: "HOOK_DIRECTORY_PIN_DECORATOR",
|
|
|
|
|
|
|
|
16: "HOOK_LOAD_ONCE",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Hook_value = map[string]int32{
|
|
|
|
Hook_value = map[string]int32{
|
|
|
|
"HOOK_UNSPECIFIED": 0,
|
|
|
|
"HOOK_UNSPECIFIED": 0,
|
|
|
|
@ -117,6 +121,7 @@ var (
|
|
|
|
"HOOK_BRIDGE_CALL": 13,
|
|
|
|
"HOOK_BRIDGE_CALL": 13,
|
|
|
|
"HOOK_DIRECTORY_PANEL_SECTION": 14,
|
|
|
|
"HOOK_DIRECTORY_PANEL_SECTION": 14,
|
|
|
|
"HOOK_DIRECTORY_PIN_DECORATOR": 15,
|
|
|
|
"HOOK_DIRECTORY_PIN_DECORATOR": 15,
|
|
|
|
|
|
|
|
"HOOK_LOAD_ONCE": 16,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@ -627,6 +632,89 @@ func (*LoadResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{7}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{7}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// LoadOnceRequest identifies the callback selected by the host from the
|
|
|
|
|
|
|
|
// manifest's load_once_keys. The host records the key only after a successful
|
|
|
|
|
|
|
|
// response; failed callbacks may be retried on a later load.
|
|
|
|
|
|
|
|
type LoadOnceRequest struct {
|
|
|
|
|
|
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
|
|
|
|
|
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
|
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *LoadOnceRequest) Reset() {
|
|
|
|
|
|
|
|
*x = LoadOnceRequest{}
|
|
|
|
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[8]
|
|
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *LoadOnceRequest) String() string {
|
|
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (*LoadOnceRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *LoadOnceRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[8]
|
|
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ms
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use LoadOnceRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
|
|
func (*LoadOnceRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{8}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *LoadOnceRequest) GetKey() string {
|
|
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
|
|
return x.Key
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ""
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type LoadOnceResponse struct {
|
|
|
|
|
|
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
|
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *LoadOnceResponse) Reset() {
|
|
|
|
|
|
|
|
*x = LoadOnceResponse{}
|
|
|
|
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[9]
|
|
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *LoadOnceResponse) String() string {
|
|
|
|
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (*LoadOnceResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func (x *LoadOnceResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[9]
|
|
|
|
|
|
|
|
if x != nil {
|
|
|
|
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ms
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return mi.MessageOf(x)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use LoadOnceResponse.ProtoReflect.Descriptor instead.
|
|
|
|
|
|
|
|
func (*LoadOnceResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{9}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type UnloadRequest struct {
|
|
|
|
type UnloadRequest struct {
|
|
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
@ -635,7 +723,7 @@ type UnloadRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UnloadRequest) Reset() {
|
|
|
|
func (x *UnloadRequest) Reset() {
|
|
|
|
*x = UnloadRequest{}
|
|
|
|
*x = UnloadRequest{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[8]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[10]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -647,7 +735,7 @@ func (x *UnloadRequest) String() string {
|
|
|
|
func (*UnloadRequest) ProtoMessage() {}
|
|
|
|
func (*UnloadRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UnloadRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *UnloadRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[8]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[10]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -660,7 +748,7 @@ func (x *UnloadRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UnloadRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use UnloadRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*UnloadRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*UnloadRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{8}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{10}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
type UnloadResponse struct {
|
|
|
|
type UnloadResponse struct {
|
|
|
|
@ -671,7 +759,7 @@ type UnloadResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UnloadResponse) Reset() {
|
|
|
|
func (x *UnloadResponse) Reset() {
|
|
|
|
*x = UnloadResponse{}
|
|
|
|
*x = UnloadResponse{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[9]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[11]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -683,7 +771,7 @@ func (x *UnloadResponse) String() string {
|
|
|
|
func (*UnloadResponse) ProtoMessage() {}
|
|
|
|
func (*UnloadResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *UnloadResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *UnloadResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[9]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[11]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -696,7 +784,7 @@ func (x *UnloadResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use UnloadResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use UnloadResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*UnloadResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*UnloadResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{9}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{11}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// JobRequest dispatches one background job to the guest handler registered
|
|
|
|
// JobRequest dispatches one background job to the guest handler registered
|
|
|
|
@ -712,7 +800,7 @@ type JobRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *JobRequest) Reset() {
|
|
|
|
func (x *JobRequest) Reset() {
|
|
|
|
*x = JobRequest{}
|
|
|
|
*x = JobRequest{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[10]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[12]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -724,7 +812,7 @@ func (x *JobRequest) String() string {
|
|
|
|
func (*JobRequest) ProtoMessage() {}
|
|
|
|
func (*JobRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *JobRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *JobRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[10]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[12]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -737,7 +825,7 @@ func (x *JobRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use JobRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use JobRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*JobRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*JobRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{10}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{12}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *JobRequest) GetJobType() string {
|
|
|
|
func (x *JobRequest) GetJobType() string {
|
|
|
|
@ -764,7 +852,7 @@ type JobResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *JobResponse) Reset() {
|
|
|
|
func (x *JobResponse) Reset() {
|
|
|
|
*x = JobResponse{}
|
|
|
|
*x = JobResponse{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[11]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[13]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -776,7 +864,7 @@ func (x *JobResponse) String() string {
|
|
|
|
func (*JobResponse) ProtoMessage() {}
|
|
|
|
func (*JobResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *JobResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *JobResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[11]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[13]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -789,7 +877,7 @@ func (x *JobResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use JobResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use JobResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*JobResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*JobResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{11}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{13}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *JobResponse) GetResultJson() []byte {
|
|
|
|
func (x *JobResponse) GetResultJson() []byte {
|
|
|
|
@ -811,7 +899,7 @@ type RagFetchRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RagFetchRequest) Reset() {
|
|
|
|
func (x *RagFetchRequest) Reset() {
|
|
|
|
*x = RagFetchRequest{}
|
|
|
|
*x = RagFetchRequest{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[12]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[14]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -823,7 +911,7 @@ func (x *RagFetchRequest) String() string {
|
|
|
|
func (*RagFetchRequest) ProtoMessage() {}
|
|
|
|
func (*RagFetchRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RagFetchRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *RagFetchRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[12]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[14]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -836,7 +924,7 @@ func (x *RagFetchRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use RagFetchRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use RagFetchRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*RagFetchRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*RagFetchRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{12}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{14}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RagFetchRequest) GetContentType() string {
|
|
|
|
func (x *RagFetchRequest) GetContentType() string {
|
|
|
|
@ -864,7 +952,7 @@ type RagFetchResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RagFetchResponse) Reset() {
|
|
|
|
func (x *RagFetchResponse) Reset() {
|
|
|
|
*x = RagFetchResponse{}
|
|
|
|
*x = RagFetchResponse{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[13]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[15]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -876,7 +964,7 @@ func (x *RagFetchResponse) String() string {
|
|
|
|
func (*RagFetchResponse) ProtoMessage() {}
|
|
|
|
func (*RagFetchResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RagFetchResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *RagFetchResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[13]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[15]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -889,7 +977,7 @@ func (x *RagFetchResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use RagFetchResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use RagFetchResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*RagFetchResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*RagFetchResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{13}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{15}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *RagFetchResponse) GetTitle() string {
|
|
|
|
func (x *RagFetchResponse) GetTitle() string {
|
|
|
|
@ -921,7 +1009,7 @@ type MediaHookRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *MediaHookRequest) Reset() {
|
|
|
|
func (x *MediaHookRequest) Reset() {
|
|
|
|
*x = MediaHookRequest{}
|
|
|
|
*x = MediaHookRequest{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[14]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[16]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -933,7 +1021,7 @@ func (x *MediaHookRequest) String() string {
|
|
|
|
func (*MediaHookRequest) ProtoMessage() {}
|
|
|
|
func (*MediaHookRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *MediaHookRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *MediaHookRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[14]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[16]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -946,7 +1034,7 @@ func (x *MediaHookRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use MediaHookRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use MediaHookRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*MediaHookRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*MediaHookRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{14}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{16}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *MediaHookRequest) GetEvent() isMediaHookRequest_Event {
|
|
|
|
func (x *MediaHookRequest) GetEvent() isMediaHookRequest_Event {
|
|
|
|
@ -998,7 +1086,7 @@ type MediaHookResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *MediaHookResponse) Reset() {
|
|
|
|
func (x *MediaHookResponse) Reset() {
|
|
|
|
*x = MediaHookResponse{}
|
|
|
|
*x = MediaHookResponse{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[15]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[17]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -1010,7 +1098,7 @@ func (x *MediaHookResponse) String() string {
|
|
|
|
func (*MediaHookResponse) ProtoMessage() {}
|
|
|
|
func (*MediaHookResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *MediaHookResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *MediaHookResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[15]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[17]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -1023,7 +1111,7 @@ func (x *MediaHookResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use MediaHookResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use MediaHookResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*MediaHookResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*MediaHookResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{15}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{17}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// MediaAnalyzedEvent mirrors plugin.MediaAnalyzedEvent (UUIDs as strings).
|
|
|
|
// MediaAnalyzedEvent mirrors plugin.MediaAnalyzedEvent (UUIDs as strings).
|
|
|
|
@ -1045,7 +1133,7 @@ type MediaAnalyzedEvent struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *MediaAnalyzedEvent) Reset() {
|
|
|
|
func (x *MediaAnalyzedEvent) Reset() {
|
|
|
|
*x = MediaAnalyzedEvent{}
|
|
|
|
*x = MediaAnalyzedEvent{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[16]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[18]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -1057,7 +1145,7 @@ func (x *MediaAnalyzedEvent) String() string {
|
|
|
|
func (*MediaAnalyzedEvent) ProtoMessage() {}
|
|
|
|
func (*MediaAnalyzedEvent) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *MediaAnalyzedEvent) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *MediaAnalyzedEvent) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[16]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[18]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -1070,7 +1158,7 @@ func (x *MediaAnalyzedEvent) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use MediaAnalyzedEvent.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use MediaAnalyzedEvent.ProtoReflect.Descriptor instead.
|
|
|
|
func (*MediaAnalyzedEvent) Descriptor() ([]byte, []int) {
|
|
|
|
func (*MediaAnalyzedEvent) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{16}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{18}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *MediaAnalyzedEvent) GetMediaId() string {
|
|
|
|
func (x *MediaAnalyzedEvent) GetMediaId() string {
|
|
|
|
@ -1156,7 +1244,7 @@ type AiToolCallRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AiToolCallRequest) Reset() {
|
|
|
|
func (x *AiToolCallRequest) Reset() {
|
|
|
|
*x = AiToolCallRequest{}
|
|
|
|
*x = AiToolCallRequest{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[17]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[19]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -1168,7 +1256,7 @@ func (x *AiToolCallRequest) String() string {
|
|
|
|
func (*AiToolCallRequest) ProtoMessage() {}
|
|
|
|
func (*AiToolCallRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AiToolCallRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *AiToolCallRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[17]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[19]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -1181,7 +1269,7 @@ func (x *AiToolCallRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use AiToolCallRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use AiToolCallRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*AiToolCallRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*AiToolCallRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{17}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{19}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AiToolCallRequest) GetSlug() string {
|
|
|
|
func (x *AiToolCallRequest) GetSlug() string {
|
|
|
|
@ -1211,7 +1299,7 @@ type AiToolCallResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AiToolCallResponse) Reset() {
|
|
|
|
func (x *AiToolCallResponse) Reset() {
|
|
|
|
*x = AiToolCallResponse{}
|
|
|
|
*x = AiToolCallResponse{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[18]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[20]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -1223,7 +1311,7 @@ func (x *AiToolCallResponse) String() string {
|
|
|
|
func (*AiToolCallResponse) ProtoMessage() {}
|
|
|
|
func (*AiToolCallResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AiToolCallResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *AiToolCallResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[18]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[20]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -1236,7 +1324,7 @@ func (x *AiToolCallResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use AiToolCallResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use AiToolCallResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*AiToolCallResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*AiToolCallResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{18}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{20}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *AiToolCallResponse) GetContent() string {
|
|
|
|
func (x *AiToolCallResponse) GetContent() string {
|
|
|
|
@ -1268,7 +1356,7 @@ type BridgeCallRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *BridgeCallRequest) Reset() {
|
|
|
|
func (x *BridgeCallRequest) Reset() {
|
|
|
|
*x = BridgeCallRequest{}
|
|
|
|
*x = BridgeCallRequest{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[19]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[21]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -1280,7 +1368,7 @@ func (x *BridgeCallRequest) String() string {
|
|
|
|
func (*BridgeCallRequest) ProtoMessage() {}
|
|
|
|
func (*BridgeCallRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *BridgeCallRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *BridgeCallRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[19]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[21]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -1293,7 +1381,7 @@ func (x *BridgeCallRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use BridgeCallRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use BridgeCallRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*BridgeCallRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*BridgeCallRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{19}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{21}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *BridgeCallRequest) GetServiceName() string {
|
|
|
|
func (x *BridgeCallRequest) GetServiceName() string {
|
|
|
|
@ -1326,7 +1414,7 @@ type BridgeCallResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *BridgeCallResponse) Reset() {
|
|
|
|
func (x *BridgeCallResponse) Reset() {
|
|
|
|
*x = BridgeCallResponse{}
|
|
|
|
*x = BridgeCallResponse{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[20]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[22]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -1338,7 +1426,7 @@ func (x *BridgeCallResponse) String() string {
|
|
|
|
func (*BridgeCallResponse) ProtoMessage() {}
|
|
|
|
func (*BridgeCallResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *BridgeCallResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *BridgeCallResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[20]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[22]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -1351,7 +1439,7 @@ func (x *BridgeCallResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use BridgeCallResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use BridgeCallResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*BridgeCallResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*BridgeCallResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{20}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{22}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *BridgeCallResponse) GetPayload() []byte {
|
|
|
|
func (x *BridgeCallResponse) GetPayload() []byte {
|
|
|
|
@ -1375,7 +1463,7 @@ type DirectoryPanelSectionRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DirectoryPanelSectionRequest) Reset() {
|
|
|
|
func (x *DirectoryPanelSectionRequest) Reset() {
|
|
|
|
*x = DirectoryPanelSectionRequest{}
|
|
|
|
*x = DirectoryPanelSectionRequest{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[21]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[23]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -1387,7 +1475,7 @@ func (x *DirectoryPanelSectionRequest) String() string {
|
|
|
|
func (*DirectoryPanelSectionRequest) ProtoMessage() {}
|
|
|
|
func (*DirectoryPanelSectionRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DirectoryPanelSectionRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *DirectoryPanelSectionRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[21]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[23]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -1400,7 +1488,7 @@ func (x *DirectoryPanelSectionRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use DirectoryPanelSectionRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use DirectoryPanelSectionRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*DirectoryPanelSectionRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*DirectoryPanelSectionRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{21}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{23}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DirectoryPanelSectionRequest) GetIndex() uint32 {
|
|
|
|
func (x *DirectoryPanelSectionRequest) GetIndex() uint32 {
|
|
|
|
@ -1426,7 +1514,7 @@ type DirectoryPanelSectionResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DirectoryPanelSectionResponse) Reset() {
|
|
|
|
func (x *DirectoryPanelSectionResponse) Reset() {
|
|
|
|
*x = DirectoryPanelSectionResponse{}
|
|
|
|
*x = DirectoryPanelSectionResponse{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[22]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[24]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -1438,7 +1526,7 @@ func (x *DirectoryPanelSectionResponse) String() string {
|
|
|
|
func (*DirectoryPanelSectionResponse) ProtoMessage() {}
|
|
|
|
func (*DirectoryPanelSectionResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DirectoryPanelSectionResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *DirectoryPanelSectionResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[22]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[24]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -1451,7 +1539,7 @@ func (x *DirectoryPanelSectionResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use DirectoryPanelSectionResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use DirectoryPanelSectionResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*DirectoryPanelSectionResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*DirectoryPanelSectionResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{22}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{24}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DirectoryPanelSectionResponse) GetHtml() string {
|
|
|
|
func (x *DirectoryPanelSectionResponse) GetHtml() string {
|
|
|
|
@ -1476,7 +1564,7 @@ type DirectoryPinDecoratorRequest struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DirectoryPinDecoratorRequest) Reset() {
|
|
|
|
func (x *DirectoryPinDecoratorRequest) Reset() {
|
|
|
|
*x = DirectoryPinDecoratorRequest{}
|
|
|
|
*x = DirectoryPinDecoratorRequest{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[23]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[25]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -1488,7 +1576,7 @@ func (x *DirectoryPinDecoratorRequest) String() string {
|
|
|
|
func (*DirectoryPinDecoratorRequest) ProtoMessage() {}
|
|
|
|
func (*DirectoryPinDecoratorRequest) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DirectoryPinDecoratorRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *DirectoryPinDecoratorRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[23]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[25]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -1501,7 +1589,7 @@ func (x *DirectoryPinDecoratorRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use DirectoryPinDecoratorRequest.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use DirectoryPinDecoratorRequest.ProtoReflect.Descriptor instead.
|
|
|
|
func (*DirectoryPinDecoratorRequest) Descriptor() ([]byte, []int) {
|
|
|
|
func (*DirectoryPinDecoratorRequest) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{23}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{25}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DirectoryPinDecoratorRequest) GetIndex() uint32 {
|
|
|
|
func (x *DirectoryPinDecoratorRequest) GetIndex() uint32 {
|
|
|
|
@ -1535,7 +1623,7 @@ type DirectoryPinDecoratorResponse struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DirectoryPinDecoratorResponse) Reset() {
|
|
|
|
func (x *DirectoryPinDecoratorResponse) Reset() {
|
|
|
|
*x = DirectoryPinDecoratorResponse{}
|
|
|
|
*x = DirectoryPinDecoratorResponse{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[24]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[26]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -1547,7 +1635,7 @@ func (x *DirectoryPinDecoratorResponse) String() string {
|
|
|
|
func (*DirectoryPinDecoratorResponse) ProtoMessage() {}
|
|
|
|
func (*DirectoryPinDecoratorResponse) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DirectoryPinDecoratorResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *DirectoryPinDecoratorResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[24]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[26]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -1560,7 +1648,7 @@ func (x *DirectoryPinDecoratorResponse) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use DirectoryPinDecoratorResponse.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use DirectoryPinDecoratorResponse.ProtoReflect.Descriptor instead.
|
|
|
|
func (*DirectoryPinDecoratorResponse) Descriptor() ([]byte, []int) {
|
|
|
|
func (*DirectoryPinDecoratorResponse) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{24}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{26}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *DirectoryPinDecoratorResponse) GetPinJson() []byte {
|
|
|
|
func (x *DirectoryPinDecoratorResponse) GetPinJson() []byte {
|
|
|
|
@ -1588,7 +1676,7 @@ type ModerationDecisionEvent struct {
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ModerationDecisionEvent) Reset() {
|
|
|
|
func (x *ModerationDecisionEvent) Reset() {
|
|
|
|
*x = ModerationDecisionEvent{}
|
|
|
|
*x = ModerationDecisionEvent{}
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[25]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[27]
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -1600,7 +1688,7 @@ func (x *ModerationDecisionEvent) String() string {
|
|
|
|
func (*ModerationDecisionEvent) ProtoMessage() {}
|
|
|
|
func (*ModerationDecisionEvent) ProtoMessage() {}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ModerationDecisionEvent) ProtoReflect() protoreflect.Message {
|
|
|
|
func (x *ModerationDecisionEvent) ProtoReflect() protoreflect.Message {
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[25]
|
|
|
|
mi := &file_v1_invoke_proto_msgTypes[27]
|
|
|
|
if x != nil {
|
|
|
|
if x != nil {
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
|
|
@ -1613,7 +1701,7 @@ func (x *ModerationDecisionEvent) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
|
|
|
|
|
|
// Deprecated: Use ModerationDecisionEvent.ProtoReflect.Descriptor instead.
|
|
|
|
// Deprecated: Use ModerationDecisionEvent.ProtoReflect.Descriptor instead.
|
|
|
|
func (*ModerationDecisionEvent) Descriptor() ([]byte, []int) {
|
|
|
|
func (*ModerationDecisionEvent) Descriptor() ([]byte, []int) {
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{25}
|
|
|
|
return file_v1_invoke_proto_rawDescGZIP(), []int{27}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (x *ModerationDecisionEvent) GetMediaId() string {
|
|
|
|
func (x *ModerationDecisionEvent) GetMediaId() string {
|
|
|
|
@ -1707,7 +1795,10 @@ const file_v1_invoke_proto_rawDesc = "" +
|
|
|
|
"\aapp_url\x18\x01 \x01(\tR\x06appUrl\x12\x1d\n" +
|
|
|
|
"\aapp_url\x18\x01 \x01(\tR\x06appUrl\x12\x1d\n" +
|
|
|
|
"\n" +
|
|
|
|
"\n" +
|
|
|
|
"media_path\x18\x02 \x01(\tR\tmediaPath\"\x0e\n" +
|
|
|
|
"media_path\x18\x02 \x01(\tR\tmediaPath\"\x0e\n" +
|
|
|
|
"\fLoadResponse\"\x0f\n" +
|
|
|
|
"\fLoadResponse\"#\n" +
|
|
|
|
|
|
|
|
"\x0fLoadOnceRequest\x12\x10\n" +
|
|
|
|
|
|
|
|
"\x03key\x18\x01 \x01(\tR\x03key\"\x12\n" +
|
|
|
|
|
|
|
|
"\x10LoadOnceResponse\"\x0f\n" +
|
|
|
|
"\rUnloadRequest\"\x10\n" +
|
|
|
|
"\rUnloadRequest\"\x10\n" +
|
|
|
|
"\x0eUnloadResponse\"H\n" +
|
|
|
|
"\x0eUnloadResponse\"H\n" +
|
|
|
|
"\n" +
|
|
|
|
"\n" +
|
|
|
|
@ -1780,7 +1871,7 @@ const file_v1_invoke_proto_rawDesc = "" +
|
|
|
|
"sourceType\x12\"\n" +
|
|
|
|
"sourceType\x12\"\n" +
|
|
|
|
"\rsource_ref_id\x18\a \x01(\tR\vsourceRefId\x12!\n" +
|
|
|
|
"\rsource_ref_id\x18\a \x01(\tR\vsourceRefId\x12!\n" +
|
|
|
|
"\fmoderated_by\x18\b \x01(\tR\vmoderatedBy\x12\x12\n" +
|
|
|
|
"\fmoderated_by\x18\b \x01(\tR\vmoderatedBy\x12\x12\n" +
|
|
|
|
"\x04note\x18\t \x01(\tR\x04note*\xea\x02\n" +
|
|
|
|
"\x04note\x18\t \x01(\tR\x04note*\xfe\x02\n" +
|
|
|
|
"\x04Hook\x12\x14\n" +
|
|
|
|
"\x04Hook\x12\x14\n" +
|
|
|
|
"\x10HOOK_UNSPECIFIED\x10\x00\x12\x15\n" +
|
|
|
|
"\x10HOOK_UNSPECIFIED\x10\x00\x12\x15\n" +
|
|
|
|
"\x11HOOK_RENDER_BLOCK\x10\x01\x12\x18\n" +
|
|
|
|
"\x11HOOK_RENDER_BLOCK\x10\x01\x12\x18\n" +
|
|
|
|
@ -1798,7 +1889,8 @@ const file_v1_invoke_proto_rawDesc = "" +
|
|
|
|
"\x11HOOK_AI_TOOL_CALL\x10\f\x12\x14\n" +
|
|
|
|
"\x11HOOK_AI_TOOL_CALL\x10\f\x12\x14\n" +
|
|
|
|
"\x10HOOK_BRIDGE_CALL\x10\r\x12 \n" +
|
|
|
|
"\x10HOOK_BRIDGE_CALL\x10\r\x12 \n" +
|
|
|
|
"\x1cHOOK_DIRECTORY_PANEL_SECTION\x10\x0e\x12 \n" +
|
|
|
|
"\x1cHOOK_DIRECTORY_PANEL_SECTION\x10\x0e\x12 \n" +
|
|
|
|
"\x1cHOOK_DIRECTORY_PIN_DECORATOR\x10\x0f*\x95\x02\n" +
|
|
|
|
"\x1cHOOK_DIRECTORY_PIN_DECORATOR\x10\x0f\x12\x12\n" +
|
|
|
|
|
|
|
|
"\x0eHOOK_LOAD_ONCE\x10\x10*\x95\x02\n" +
|
|
|
|
"\fAbiErrorCode\x12\x1e\n" +
|
|
|
|
"\fAbiErrorCode\x12\x1e\n" +
|
|
|
|
"\x1aABI_ERROR_CODE_UNSPECIFIED\x10\x00\x12\x1b\n" +
|
|
|
|
"\x1aABI_ERROR_CODE_UNSPECIFIED\x10\x00\x12\x1b\n" +
|
|
|
|
"\x17ABI_ERROR_CODE_INTERNAL\x10\x01\x12\x19\n" +
|
|
|
|
"\x17ABI_ERROR_CODE_INTERNAL\x10\x01\x12\x19\n" +
|
|
|
|
@ -1822,7 +1914,7 @@ func file_v1_invoke_proto_rawDescGZIP() []byte {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var file_v1_invoke_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
|
|
|
|
var file_v1_invoke_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
|
|
|
|
var file_v1_invoke_proto_msgTypes = make([]protoimpl.MessageInfo, 26)
|
|
|
|
var file_v1_invoke_proto_msgTypes = make([]protoimpl.MessageInfo, 28)
|
|
|
|
var file_v1_invoke_proto_goTypes = []any{
|
|
|
|
var file_v1_invoke_proto_goTypes = []any{
|
|
|
|
(Hook)(0), // 0: abi.v1.Hook
|
|
|
|
(Hook)(0), // 0: abi.v1.Hook
|
|
|
|
(AbiErrorCode)(0), // 1: abi.v1.AbiErrorCode
|
|
|
|
(AbiErrorCode)(0), // 1: abi.v1.AbiErrorCode
|
|
|
|
@ -1834,34 +1926,36 @@ var file_v1_invoke_proto_goTypes = []any{
|
|
|
|
(*LoadRequest)(nil), // 7: abi.v1.LoadRequest
|
|
|
|
(*LoadRequest)(nil), // 7: abi.v1.LoadRequest
|
|
|
|
(*HostConfig)(nil), // 8: abi.v1.HostConfig
|
|
|
|
(*HostConfig)(nil), // 8: abi.v1.HostConfig
|
|
|
|
(*LoadResponse)(nil), // 9: abi.v1.LoadResponse
|
|
|
|
(*LoadResponse)(nil), // 9: abi.v1.LoadResponse
|
|
|
|
(*UnloadRequest)(nil), // 10: abi.v1.UnloadRequest
|
|
|
|
(*LoadOnceRequest)(nil), // 10: abi.v1.LoadOnceRequest
|
|
|
|
(*UnloadResponse)(nil), // 11: abi.v1.UnloadResponse
|
|
|
|
(*LoadOnceResponse)(nil), // 11: abi.v1.LoadOnceResponse
|
|
|
|
(*JobRequest)(nil), // 12: abi.v1.JobRequest
|
|
|
|
(*UnloadRequest)(nil), // 12: abi.v1.UnloadRequest
|
|
|
|
(*JobResponse)(nil), // 13: abi.v1.JobResponse
|
|
|
|
(*UnloadResponse)(nil), // 13: abi.v1.UnloadResponse
|
|
|
|
(*RagFetchRequest)(nil), // 14: abi.v1.RagFetchRequest
|
|
|
|
(*JobRequest)(nil), // 14: abi.v1.JobRequest
|
|
|
|
(*RagFetchResponse)(nil), // 15: abi.v1.RagFetchResponse
|
|
|
|
(*JobResponse)(nil), // 15: abi.v1.JobResponse
|
|
|
|
(*MediaHookRequest)(nil), // 16: abi.v1.MediaHookRequest
|
|
|
|
(*RagFetchRequest)(nil), // 16: abi.v1.RagFetchRequest
|
|
|
|
(*MediaHookResponse)(nil), // 17: abi.v1.MediaHookResponse
|
|
|
|
(*RagFetchResponse)(nil), // 17: abi.v1.RagFetchResponse
|
|
|
|
(*MediaAnalyzedEvent)(nil), // 18: abi.v1.MediaAnalyzedEvent
|
|
|
|
(*MediaHookRequest)(nil), // 18: abi.v1.MediaHookRequest
|
|
|
|
(*AiToolCallRequest)(nil), // 19: abi.v1.AiToolCallRequest
|
|
|
|
(*MediaHookResponse)(nil), // 19: abi.v1.MediaHookResponse
|
|
|
|
(*AiToolCallResponse)(nil), // 20: abi.v1.AiToolCallResponse
|
|
|
|
(*MediaAnalyzedEvent)(nil), // 20: abi.v1.MediaAnalyzedEvent
|
|
|
|
(*BridgeCallRequest)(nil), // 21: abi.v1.BridgeCallRequest
|
|
|
|
(*AiToolCallRequest)(nil), // 21: abi.v1.AiToolCallRequest
|
|
|
|
(*BridgeCallResponse)(nil), // 22: abi.v1.BridgeCallResponse
|
|
|
|
(*AiToolCallResponse)(nil), // 22: abi.v1.AiToolCallResponse
|
|
|
|
(*DirectoryPanelSectionRequest)(nil), // 23: abi.v1.DirectoryPanelSectionRequest
|
|
|
|
(*BridgeCallRequest)(nil), // 23: abi.v1.BridgeCallRequest
|
|
|
|
(*DirectoryPanelSectionResponse)(nil), // 24: abi.v1.DirectoryPanelSectionResponse
|
|
|
|
(*BridgeCallResponse)(nil), // 24: abi.v1.BridgeCallResponse
|
|
|
|
(*DirectoryPinDecoratorRequest)(nil), // 25: abi.v1.DirectoryPinDecoratorRequest
|
|
|
|
(*DirectoryPanelSectionRequest)(nil), // 25: abi.v1.DirectoryPanelSectionRequest
|
|
|
|
(*DirectoryPinDecoratorResponse)(nil), // 26: abi.v1.DirectoryPinDecoratorResponse
|
|
|
|
(*DirectoryPanelSectionResponse)(nil), // 26: abi.v1.DirectoryPanelSectionResponse
|
|
|
|
(*ModerationDecisionEvent)(nil), // 27: abi.v1.ModerationDecisionEvent
|
|
|
|
(*DirectoryPinDecoratorRequest)(nil), // 27: abi.v1.DirectoryPinDecoratorRequest
|
|
|
|
(*PluginManifest)(nil), // 28: abi.v1.PluginManifest
|
|
|
|
(*DirectoryPinDecoratorResponse)(nil), // 28: abi.v1.DirectoryPinDecoratorResponse
|
|
|
|
|
|
|
|
(*ModerationDecisionEvent)(nil), // 29: abi.v1.ModerationDecisionEvent
|
|
|
|
|
|
|
|
(*PluginManifest)(nil), // 30: abi.v1.PluginManifest
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var file_v1_invoke_proto_depIdxs = []int32{
|
|
|
|
var file_v1_invoke_proto_depIdxs = []int32{
|
|
|
|
0, // 0: abi.v1.InvokeRequest.hook:type_name -> abi.v1.Hook
|
|
|
|
0, // 0: abi.v1.InvokeRequest.hook:type_name -> abi.v1.Hook
|
|
|
|
4, // 1: abi.v1.InvokeResponse.error:type_name -> abi.v1.AbiError
|
|
|
|
4, // 1: abi.v1.InvokeResponse.error:type_name -> abi.v1.AbiError
|
|
|
|
1, // 2: abi.v1.AbiError.code:type_name -> abi.v1.AbiErrorCode
|
|
|
|
1, // 2: abi.v1.AbiError.code:type_name -> abi.v1.AbiErrorCode
|
|
|
|
28, // 3: abi.v1.DescribeResponse.manifest:type_name -> abi.v1.PluginManifest
|
|
|
|
30, // 3: abi.v1.DescribeResponse.manifest:type_name -> abi.v1.PluginManifest
|
|
|
|
8, // 4: abi.v1.LoadRequest.host_config:type_name -> abi.v1.HostConfig
|
|
|
|
8, // 4: abi.v1.LoadRequest.host_config:type_name -> abi.v1.HostConfig
|
|
|
|
18, // 5: abi.v1.MediaHookRequest.media_analyzed:type_name -> abi.v1.MediaAnalyzedEvent
|
|
|
|
20, // 5: abi.v1.MediaHookRequest.media_analyzed:type_name -> abi.v1.MediaAnalyzedEvent
|
|
|
|
27, // 6: abi.v1.MediaHookRequest.moderation_decision:type_name -> abi.v1.ModerationDecisionEvent
|
|
|
|
29, // 6: abi.v1.MediaHookRequest.moderation_decision:type_name -> abi.v1.ModerationDecisionEvent
|
|
|
|
7, // [7:7] is the sub-list for method output_type
|
|
|
|
7, // [7:7] is the sub-list for method output_type
|
|
|
|
7, // [7:7] is the sub-list for method input_type
|
|
|
|
7, // [7:7] is the sub-list for method input_type
|
|
|
|
7, // [7:7] is the sub-list for extension type_name
|
|
|
|
7, // [7:7] is the sub-list for extension type_name
|
|
|
|
@ -1875,7 +1969,7 @@ func file_v1_invoke_proto_init() {
|
|
|
|
return
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file_v1_manifest_proto_init()
|
|
|
|
file_v1_manifest_proto_init()
|
|
|
|
file_v1_invoke_proto_msgTypes[14].OneofWrappers = []any{
|
|
|
|
file_v1_invoke_proto_msgTypes[16].OneofWrappers = []any{
|
|
|
|
(*MediaHookRequest_MediaAnalyzed)(nil),
|
|
|
|
(*MediaHookRequest_MediaAnalyzed)(nil),
|
|
|
|
(*MediaHookRequest_ModerationDecision)(nil),
|
|
|
|
(*MediaHookRequest_ModerationDecision)(nil),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -1885,7 +1979,7 @@ func file_v1_invoke_proto_init() {
|
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_v1_invoke_proto_rawDesc), len(file_v1_invoke_proto_rawDesc)),
|
|
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_v1_invoke_proto_rawDesc), len(file_v1_invoke_proto_rawDesc)),
|
|
|
|
NumEnums: 2,
|
|
|
|
NumEnums: 2,
|
|
|
|
NumMessages: 26,
|
|
|
|
NumMessages: 28,
|
|
|
|
NumExtensions: 0,
|
|
|
|
NumExtensions: 0,
|
|
|
|
NumServices: 0,
|
|
|
|
NumServices: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|