Skip to content
Snippets Groups Projects
Commit b5de4f24 authored by ko_oler's avatar ko_oler
Browse files

Перегенерированы файлы extension/manager и обновлена версия proto

parent 70a32ee2
No related branches found
No related tags found
No related merge requests found
Subproject commit 6e55b78ebc551eb6f3ee9be1b1c7464749091e68 Subproject commit b0b20c34b7b106bf6704a78fdaf8b808459bda14
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-go. DO NOT EDIT.
// versions: // versions:
// protoc-gen-go v1.31.0 // protoc-gen-go v1.30.0
// protoc v4.23.4 // protoc v4.23.4
// source: extensions/extension.proto // source: extensions/extension.proto
...@@ -268,8 +268,6 @@ const ( ...@@ -268,8 +268,6 @@ const (
Action_ITEMS Action_Kind = 5 // Действие связано с несколькими записями (требуется передача space_id, env_id, collection_id, item_ids). Отображается на экране списка записей. Action_ITEMS Action_Kind = 5 // Действие связано с несколькими записями (требуется передача space_id, env_id, collection_id, item_ids). Отображается на экране списка записей.
Action_REVISION Action_Kind = 6 // Действие связано с ревизией записи (требуется передача space_id, env_id, collection_id, item_id, rev_id). На данный момент не используется. Action_REVISION Action_Kind = 6 // Действие связано с ревизией записи (требуется передача space_id, env_id, collection_id, item_id, rev_id). На данный момент не используется.
Action_CREATE Action_Kind = 7 // Действие создание записи (требуется передача space_id, env_id, collection_id). Action_CREATE Action_Kind = 7 // Действие создание записи (требуется передача space_id, env_id, collection_id).
Action_MAIN_MENU Action_Kind = 10000 // Действие отображается в главном меню (требуется передача space_id, env_id)
Action_MAIN_MENU_BOTTOM Action_Kind = 10010 // Действие отображается в главном меню внизу (требуется передача space_id, env_id)
) )
// Enum value maps for Action_Kind. // Enum value maps for Action_Kind.
...@@ -283,8 +281,6 @@ var ( ...@@ -283,8 +281,6 @@ var (
5: "ITEMS", 5: "ITEMS",
6: "REVISION", 6: "REVISION",
7: "CREATE", 7: "CREATE",
10000: "MAIN_MENU",
10010: "MAIN_MENU_BOTTOM",
} }
Action_Kind_value = map[string]int32{ Action_Kind_value = map[string]int32{
"DEFAULT": 0, "DEFAULT": 0,
...@@ -295,8 +291,6 @@ var ( ...@@ -295,8 +291,6 @@ var (
"ITEMS": 5, "ITEMS": 5,
"REVISION": 6, "REVISION": 6,
"CREATE": 7, "CREATE": 7,
"MAIN_MENU": 10000,
"MAIN_MENU_BOTTOM": 10010,
} }
) )
...@@ -327,6 +321,58 @@ func (Action_Kind) EnumDescriptor() ([]byte, []int) { ...@@ -327,6 +321,58 @@ func (Action_Kind) EnumDescriptor() ([]byte, []int) {
return file_extensions_extension_proto_rawDescGZIP(), []int{11, 0} return file_extensions_extension_proto_rawDescGZIP(), []int{11, 0}
} }
type Action_View int32
const (
Action_DEFAULT_VIEW Action_View = 0 // Отображать в интерфейсе по умолчанию
Action_HIDDEN_VIEW Action_View = 1 // Не отображать в интерфейсе
Action_MAIN_MENU_VIEW Action_View = 2 // Отображать в главном меню
Action_MAIN_MENU_BOTTOM_VIEW Action_View = 3 // Отображать в главном меню внизу
)
// Enum value maps for Action_View.
var (
Action_View_name = map[int32]string{
0: "DEFAULT_VIEW",
1: "HIDDEN_VIEW",
2: "MAIN_MENU_VIEW",
3: "MAIN_MENU_BOTTOM_VIEW",
}
Action_View_value = map[string]int32{
"DEFAULT_VIEW": 0,
"HIDDEN_VIEW": 1,
"MAIN_MENU_VIEW": 2,
"MAIN_MENU_BOTTOM_VIEW": 3,
}
)
func (x Action_View) Enum() *Action_View {
p := new(Action_View)
*p = x
return p
}
func (x Action_View) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (Action_View) Descriptor() protoreflect.EnumDescriptor {
return file_extensions_extension_proto_enumTypes[5].Descriptor()
}
func (Action_View) Type() protoreflect.EnumType {
return &file_extensions_extension_proto_enumTypes[5]
}
func (x Action_View) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use Action_View.Descriptor instead.
func (Action_View) EnumDescriptor() ([]byte, []int) {
return file_extensions_extension_proto_rawDescGZIP(), []int{11, 1}
}
type InstallRequest struct { type InstallRequest struct {
state protoimpl.MessageState state protoimpl.MessageState
sizeCache protoimpl.SizeCache sizeCache protoimpl.SizeCache
...@@ -1217,6 +1263,8 @@ type Action struct { ...@@ -1217,6 +1263,8 @@ type Action struct {
// Параметр указывающий что действие требует подтверждения пользователя // Параметр указывающий что действие требует подтверждения пользователя
// Перед выполнением действия пользователю отображается информация о действии и кнопки подтверждения/отмены // Перед выполнением действия пользователю отображается информация о действии и кнопки подтверждения/отмены
Confirm bool `protobuf:"varint,10530,opt,name=confirm,proto3" json:"confirm,omitempty"` Confirm bool `protobuf:"varint,10530,opt,name=confirm,proto3" json:"confirm,omitempty"`
View Action_View `protobuf:"varint,10540,opt,name=view,proto3,enum=extensions.Action_View" json:"view,omitempty"` // Отображение действия в интерфейсе
Order int32 `protobuf:"varint,10550,opt,name=order,proto3" json:"order,omitempty"` // Порядок отображения действия в интерфейсе (Для пунктов меню)
} }
func (x *Action) Reset() { func (x *Action) Reset() {
...@@ -1377,6 +1425,20 @@ func (x *Action) GetConfirm() bool { ...@@ -1377,6 +1425,20 @@ func (x *Action) GetConfirm() bool {
return false return false
} }
func (x *Action) GetView() Action_View {
if x != nil {
return x.View
}
return Action_DEFAULT_VIEW
}
func (x *Action) GetOrder() int32 {
if x != nil {
return x.Order
}
return 0
}
var File_extensions_extension_proto protoreflect.FileDescriptor var File_extensions_extension_proto protoreflect.FileDescriptor
var file_extensions_extension_proto_rawDesc = []byte{ var file_extensions_extension_proto_rawDesc = []byte{
...@@ -1523,7 +1585,7 @@ var file_extensions_extension_proto_rawDesc = []byte{ ...@@ -1523,7 +1585,7 @@ var file_extensions_extension_proto_rawDesc = []byte{
0x54, 0x45, 0x52, 0x53, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x49, 0x52, 0x45, 0x44, 0x10, 0x04, 0x22, 0x54, 0x45, 0x52, 0x53, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x49, 0x52, 0x45, 0x44, 0x10, 0x04, 0x22,
0x2b, 0x0a, 0x06, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12, 0x09, 0x0a, 0x05, 0x50, 0x4c, 0x41, 0x2b, 0x0a, 0x06, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12, 0x09, 0x0a, 0x05, 0x50, 0x4c, 0x41,
0x49, 0x4e, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x54, 0x4d, 0x4c, 0x10, 0x01, 0x12, 0x0c, 0x49, 0x4e, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x54, 0x4d, 0x4c, 0x10, 0x01, 0x12, 0x0c,
0x0a, 0x08, 0x4d, 0x41, 0x52, 0x4b, 0x44, 0x4f, 0x57, 0x4e, 0x10, 0x02, 0x22, 0xab, 0x06, 0x0a, 0x0a, 0x08, 0x4d, 0x41, 0x52, 0x4b, 0x44, 0x4f, 0x57, 0x4e, 0x10, 0x02, 0x22, 0xa2, 0x07, 0x0a,
0x06, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x06, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x0a, 0x09, 0x65, 0x78, 0x74, 0x65, 0x6e,
0x73, 0x69, 0x6f, 0x6e, 0x18, 0x90, 0x4e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x78, 0x74, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x90, 0x4e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x78, 0x74,
0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x17, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x17, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
...@@ -1565,49 +1627,57 @@ var file_extensions_extension_proto_rawDesc = []byte{ ...@@ -1565,49 +1627,57 @@ var file_extensions_extension_proto_rawDesc = []byte{
0x61, 0x75, 0x74, 0x6f, 0x72, 0x75, 0x6e, 0x18, 0x98, 0x52, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x61, 0x75, 0x74, 0x6f, 0x72, 0x75, 0x6e, 0x18, 0x98, 0x52, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
0x61, 0x75, 0x74, 0x6f, 0x72, 0x75, 0x6e, 0x12, 0x19, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x61, 0x75, 0x74, 0x6f, 0x72, 0x75, 0x6e, 0x12, 0x19, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x69,
0x72, 0x6d, 0x18, 0xa2, 0x52, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x18, 0xa2, 0x52, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x69,
0x72, 0x6d, 0x22, 0x95, 0x01, 0x0a, 0x04, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x0b, 0x0a, 0x07, 0x44, 0x72, 0x6d, 0x12, 0x2c, 0x0a, 0x04, 0x76, 0x69, 0x65, 0x77, 0x18, 0xac, 0x52, 0x20, 0x01, 0x28,
0x45, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x53, 0x50, 0x41, 0x43, 0x0e, 0x32, 0x17, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x41,
0x45, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x45, 0x4e, 0x56, 0x49, 0x52, 0x4f, 0x4e, 0x4d, 0x45, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x65, 0x77, 0x52, 0x04, 0x76, 0x69, 0x65, 0x77,
0x4e, 0x54, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x43, 0x4f, 0x4c, 0x4c, 0x45, 0x43, 0x54, 0x49, 0x12, 0x15, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0xb6, 0x52, 0x20, 0x01, 0x28, 0x05,
0x4f, 0x4e, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x49, 0x54, 0x45, 0x4d, 0x10, 0x04, 0x12, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22, 0x6e, 0x0a, 0x04, 0x4b, 0x69, 0x6e, 0x64, 0x12,
0x0a, 0x05, 0x49, 0x54, 0x45, 0x4d, 0x53, 0x10, 0x05, 0x12, 0x0c, 0x0a, 0x08, 0x52, 0x45, 0x56, 0x0b, 0x0a, 0x07, 0x44, 0x45, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05,
0x49, 0x53, 0x49, 0x4f, 0x4e, 0x10, 0x06, 0x12, 0x0a, 0x0a, 0x06, 0x43, 0x52, 0x45, 0x41, 0x54, 0x53, 0x50, 0x41, 0x43, 0x45, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x45, 0x4e, 0x56, 0x49, 0x52,
0x45, 0x10, 0x07, 0x12, 0x0e, 0x0a, 0x09, 0x4d, 0x41, 0x49, 0x4e, 0x5f, 0x4d, 0x45, 0x4e, 0x55, 0x4f, 0x4e, 0x4d, 0x45, 0x4e, 0x54, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x43, 0x4f, 0x4c, 0x4c,
0x10, 0x90, 0x4e, 0x12, 0x15, 0x0a, 0x10, 0x4d, 0x41, 0x49, 0x4e, 0x5f, 0x4d, 0x45, 0x4e, 0x55, 0x45, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x49, 0x54, 0x45, 0x4d,
0x5f, 0x42, 0x4f, 0x54, 0x54, 0x4f, 0x4d, 0x10, 0x9a, 0x4e, 0x2a, 0x67, 0x0a, 0x06, 0x54, 0x61, 0x10, 0x04, 0x12, 0x09, 0x0a, 0x05, 0x49, 0x54, 0x45, 0x4d, 0x53, 0x10, 0x05, 0x12, 0x0c, 0x0a,
0x72, 0x67, 0x65, 0x74, 0x12, 0x0b, 0x0a, 0x07, 0x44, 0x45, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x10, 0x08, 0x52, 0x45, 0x56, 0x49, 0x53, 0x49, 0x4f, 0x4e, 0x10, 0x06, 0x12, 0x0a, 0x0a, 0x06, 0x43,
0x00, 0x12, 0x09, 0x0a, 0x05, 0x4d, 0x4f, 0x44, 0x41, 0x4c, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x52, 0x45, 0x41, 0x54, 0x45, 0x10, 0x07, 0x22, 0x58, 0x0a, 0x04, 0x56, 0x69, 0x65, 0x77, 0x12,
0x57, 0x49, 0x44, 0x45, 0x10, 0x02, 0x12, 0x08, 0x0a, 0x04, 0x4d, 0x41, 0x49, 0x4e, 0x10, 0x04, 0x10, 0x0a, 0x0c, 0x44, 0x45, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x5f, 0x56, 0x49, 0x45, 0x57, 0x10,
0x12, 0x0a, 0x0a, 0x06, 0x44, 0x52, 0x41, 0x57, 0x45, 0x52, 0x10, 0x05, 0x12, 0x10, 0x0a, 0x0c, 0x00, 0x12, 0x0f, 0x0a, 0x0b, 0x48, 0x49, 0x44, 0x44, 0x45, 0x4e, 0x5f, 0x56, 0x49, 0x45, 0x57,
0x4e, 0x4f, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x06, 0x12, 0x09, 0x10, 0x01, 0x12, 0x12, 0x0a, 0x0e, 0x4d, 0x41, 0x49, 0x4e, 0x5f, 0x4d, 0x45, 0x4e, 0x55, 0x5f,
0x0a, 0x05, 0x42, 0x4c, 0x41, 0x4e, 0x4b, 0x10, 0x07, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x4f, 0x4e, 0x56, 0x49, 0x45, 0x57, 0x10, 0x02, 0x12, 0x19, 0x0a, 0x15, 0x4d, 0x41, 0x49, 0x4e, 0x5f, 0x4d,
0x45, 0x10, 0x64, 0x32, 0xe3, 0x02, 0x0a, 0x09, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x45, 0x4e, 0x55, 0x5f, 0x42, 0x4f, 0x54, 0x54, 0x4f, 0x4d, 0x5f, 0x56, 0x49, 0x45, 0x57, 0x10,
0x6e, 0x12, 0x44, 0x0a, 0x07, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x1a, 0x2e, 0x65, 0x03, 0x2a, 0x67, 0x0a, 0x06, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x0b, 0x0a, 0x07, 0x44,
0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x45, 0x46, 0x41, 0x55, 0x4c, 0x54, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x4d, 0x4f, 0x44, 0x41,
0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x4c, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x57, 0x49, 0x44, 0x45, 0x10, 0x02, 0x12, 0x08, 0x0a,
0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x04, 0x4d, 0x41, 0x49, 0x4e, 0x10, 0x04, 0x12, 0x0a, 0x0a, 0x06, 0x44, 0x52, 0x41, 0x57, 0x45,
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x05, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x10, 0x05, 0x12, 0x10, 0x0a, 0x0c, 0x4e, 0x4f, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54,
0x12, 0x18, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x43, 0x68, 0x49, 0x4f, 0x4e, 0x10, 0x06, 0x12, 0x09, 0x0a, 0x05, 0x42, 0x4c, 0x41, 0x4e, 0x4b, 0x10, 0x07,
0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x65, 0x78, 0x74, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x64, 0x32, 0xe3, 0x02, 0x0a, 0x09, 0x45,
0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x44, 0x0a, 0x07, 0x49, 0x6e, 0x73, 0x74,
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x06, 0x55, 0x70, 0x64, 0x61, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x1a, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
0x65, 0x12, 0x19, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x55, 0x2e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x65, 0x1b, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x49, 0x6e, 0x73,
0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x3e,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4a, 0x0a, 0x09, 0x55, 0x6e, 0x0a, 0x05, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x18, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x1c, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x55, 0x6e, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x74, 0x1a, 0x19, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x43,
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x41,
0x6e, 0x73, 0x2e, 0x55, 0x6e, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x0a, 0x06, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x19, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e,
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x06, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
0x12, 0x19, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x41, 0x63, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x65, 0x78, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x00, 0x12, 0x4a, 0x0a, 0x09, 0x55, 0x6e, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x1c,
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x3a, 0x5a, 0x38, 0x67, 0x69, 0x74, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x55, 0x6e, 0x69, 0x6e,
0x2e, 0x70, 0x65, 0x72, 0x78, 0x2e, 0x72, 0x75, 0x2f, 0x70, 0x65, 0x72, 0x78, 0x69, 0x73, 0x2f, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x65,
0x70, 0x65, 0x72, 0x78, 0x69, 0x73, 0x2d, 0x67, 0x6f, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x55, 0x6e, 0x69, 0x6e, 0x73, 0x74,
0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x3b, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x41, 0x0a,
0x73, 0x69, 0x6f, 0x6e, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x06, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e,
0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
0x42, 0x3a, 0x5a, 0x38, 0x67, 0x69, 0x74, 0x2e, 0x70, 0x65, 0x72, 0x78, 0x2e, 0x72, 0x75, 0x2f,
0x70, 0x65, 0x72, 0x78, 0x69, 0x73, 0x2f, 0x70, 0x65, 0x72, 0x78, 0x69, 0x73, 0x2d, 0x67, 0x6f,
0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
0x73, 0x3b, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
} }
var ( var (
...@@ -1622,7 +1692,7 @@ func file_extensions_extension_proto_rawDescGZIP() []byte { ...@@ -1622,7 +1692,7 @@ func file_extensions_extension_proto_rawDescGZIP() []byte {
return file_extensions_extension_proto_rawDescData return file_extensions_extension_proto_rawDescData
} }
var file_extensions_extension_proto_enumTypes = make([]protoimpl.EnumInfo, 5) var file_extensions_extension_proto_enumTypes = make([]protoimpl.EnumInfo, 6)
var file_extensions_extension_proto_msgTypes = make([]protoimpl.MessageInfo, 14) var file_extensions_extension_proto_msgTypes = make([]protoimpl.MessageInfo, 14)
var file_extensions_extension_proto_goTypes = []interface{}{ var file_extensions_extension_proto_goTypes = []interface{}{
(Target)(0), // 0: extensions.Target (Target)(0), // 0: extensions.Target
...@@ -1630,57 +1700,59 @@ var file_extensions_extension_proto_goTypes = []interface{}{ ...@@ -1630,57 +1700,59 @@ var file_extensions_extension_proto_goTypes = []interface{}{
(ActionResponse_State)(0), // 2: extensions.ActionResponse.State (ActionResponse_State)(0), // 2: extensions.ActionResponse.State
(ActionResponse_Format)(0), // 3: extensions.ActionResponse.Format (ActionResponse_Format)(0), // 3: extensions.ActionResponse.Format
(Action_Kind)(0), // 4: extensions.Action.Kind (Action_Kind)(0), // 4: extensions.Action.Kind
(*InstallRequest)(nil), // 5: extensions.InstallRequest (Action_View)(0), // 5: extensions.Action.View
(*ExtensionRequestResult)(nil), // 6: extensions.ExtensionRequestResult (*InstallRequest)(nil), // 6: extensions.InstallRequest
(*InstallResponse)(nil), // 7: extensions.InstallResponse (*ExtensionRequestResult)(nil), // 7: extensions.ExtensionRequestResult
(*UninstallRequest)(nil), // 8: extensions.UninstallRequest (*InstallResponse)(nil), // 8: extensions.InstallResponse
(*UninstallResponse)(nil), // 9: extensions.UninstallResponse (*UninstallRequest)(nil), // 9: extensions.UninstallRequest
(*UpdateRequest)(nil), // 10: extensions.UpdateRequest (*UninstallResponse)(nil), // 10: extensions.UninstallResponse
(*UpdateResponse)(nil), // 11: extensions.UpdateResponse (*UpdateRequest)(nil), // 11: extensions.UpdateRequest
(*CheckRequest)(nil), // 12: extensions.CheckRequest (*UpdateResponse)(nil), // 12: extensions.UpdateResponse
(*CheckResponse)(nil), // 13: extensions.CheckResponse (*CheckRequest)(nil), // 13: extensions.CheckRequest
(*ActionRequest)(nil), // 14: extensions.ActionRequest (*CheckResponse)(nil), // 14: extensions.CheckResponse
(*ActionResponse)(nil), // 15: extensions.ActionResponse (*ActionRequest)(nil), // 15: extensions.ActionRequest
(*Action)(nil), // 16: extensions.Action (*ActionResponse)(nil), // 16: extensions.ActionResponse
nil, // 17: extensions.ActionRequest.MetadataEntry (*Action)(nil), // 17: extensions.Action
nil, // 18: extensions.ActionResponse.MetadataEntry nil, // 18: extensions.ActionRequest.MetadataEntry
(*references.Reference)(nil), // 19: content.references.Reference nil, // 19: extensions.ActionResponse.MetadataEntry
(*references.Reference)(nil), // 20: content.references.Reference
} }
var file_extensions_extension_proto_depIdxs = []int32{ var file_extensions_extension_proto_depIdxs = []int32{
1, // 0: extensions.ExtensionRequestResult.state:type_name -> extensions.ExtensionRequestResult.State 1, // 0: extensions.ExtensionRequestResult.state:type_name -> extensions.ExtensionRequestResult.State
6, // 1: extensions.InstallResponse.results:type_name -> extensions.ExtensionRequestResult 7, // 1: extensions.InstallResponse.results:type_name -> extensions.ExtensionRequestResult
6, // 2: extensions.UninstallResponse.results:type_name -> extensions.ExtensionRequestResult 7, // 2: extensions.UninstallResponse.results:type_name -> extensions.ExtensionRequestResult
6, // 3: extensions.UpdateResponse.results:type_name -> extensions.ExtensionRequestResult 7, // 3: extensions.UpdateResponse.results:type_name -> extensions.ExtensionRequestResult
6, // 4: extensions.CheckResponse.results:type_name -> extensions.ExtensionRequestResult 7, // 4: extensions.CheckResponse.results:type_name -> extensions.ExtensionRequestResult
17, // 5: extensions.ActionRequest.metadata:type_name -> extensions.ActionRequest.MetadataEntry 18, // 5: extensions.ActionRequest.metadata:type_name -> extensions.ActionRequest.MetadataEntry
19, // 6: extensions.ActionRequest.refs:type_name -> content.references.Reference 20, // 6: extensions.ActionRequest.refs:type_name -> content.references.Reference
19, // 7: extensions.ActionRequest.params:type_name -> content.references.Reference 20, // 7: extensions.ActionRequest.params:type_name -> content.references.Reference
2, // 8: extensions.ActionResponse.state:type_name -> extensions.ActionResponse.State 2, // 8: extensions.ActionResponse.state:type_name -> extensions.ActionResponse.State
0, // 9: extensions.ActionResponse.target:type_name -> extensions.Target 0, // 9: extensions.ActionResponse.target:type_name -> extensions.Target
3, // 10: extensions.ActionResponse.format:type_name -> extensions.ActionResponse.Format 3, // 10: extensions.ActionResponse.format:type_name -> extensions.ActionResponse.Format
16, // 11: extensions.ActionResponse.next:type_name -> extensions.Action 17, // 11: extensions.ActionResponse.next:type_name -> extensions.Action
18, // 12: extensions.ActionResponse.metadata:type_name -> extensions.ActionResponse.MetadataEntry 19, // 12: extensions.ActionResponse.metadata:type_name -> extensions.ActionResponse.MetadataEntry
19, // 13: extensions.ActionResponse.refs:type_name -> content.references.Reference 20, // 13: extensions.ActionResponse.refs:type_name -> content.references.Reference
0, // 14: extensions.Action.target:type_name -> extensions.Target 0, // 14: extensions.Action.target:type_name -> extensions.Target
19, // 15: extensions.Action.image:type_name -> content.references.Reference 20, // 15: extensions.Action.image:type_name -> content.references.Reference
4, // 16: extensions.Action.kind:type_name -> extensions.Action.Kind 4, // 16: extensions.Action.kind:type_name -> extensions.Action.Kind
19, // 17: extensions.Action.refs:type_name -> content.references.Reference 20, // 17: extensions.Action.refs:type_name -> content.references.Reference
14, // 18: extensions.Action.request:type_name -> extensions.ActionRequest 15, // 18: extensions.Action.request:type_name -> extensions.ActionRequest
5, // 19: extensions.Extension.Install:input_type -> extensions.InstallRequest 5, // 19: extensions.Action.view:type_name -> extensions.Action.View
12, // 20: extensions.Extension.Check:input_type -> extensions.CheckRequest 6, // 20: extensions.Extension.Install:input_type -> extensions.InstallRequest
10, // 21: extensions.Extension.Update:input_type -> extensions.UpdateRequest 13, // 21: extensions.Extension.Check:input_type -> extensions.CheckRequest
8, // 22: extensions.Extension.Uninstall:input_type -> extensions.UninstallRequest 11, // 22: extensions.Extension.Update:input_type -> extensions.UpdateRequest
14, // 23: extensions.Extension.Action:input_type -> extensions.ActionRequest 9, // 23: extensions.Extension.Uninstall:input_type -> extensions.UninstallRequest
7, // 24: extensions.Extension.Install:output_type -> extensions.InstallResponse 15, // 24: extensions.Extension.Action:input_type -> extensions.ActionRequest
13, // 25: extensions.Extension.Check:output_type -> extensions.CheckResponse 8, // 25: extensions.Extension.Install:output_type -> extensions.InstallResponse
11, // 26: extensions.Extension.Update:output_type -> extensions.UpdateResponse 14, // 26: extensions.Extension.Check:output_type -> extensions.CheckResponse
9, // 27: extensions.Extension.Uninstall:output_type -> extensions.UninstallResponse 12, // 27: extensions.Extension.Update:output_type -> extensions.UpdateResponse
15, // 28: extensions.Extension.Action:output_type -> extensions.ActionResponse 10, // 28: extensions.Extension.Uninstall:output_type -> extensions.UninstallResponse
24, // [24:29] is the sub-list for method output_type 16, // 29: extensions.Extension.Action:output_type -> extensions.ActionResponse
19, // [19:24] is the sub-list for method input_type 25, // [25:30] is the sub-list for method output_type
19, // [19:19] is the sub-list for extension type_name 20, // [20:25] is the sub-list for method input_type
19, // [19:19] is the sub-list for extension extendee 20, // [20:20] is the sub-list for extension type_name
0, // [0:19] is the sub-list for field type_name 20, // [20:20] is the sub-list for extension extendee
0, // [0:20] is the sub-list for field type_name
} }
func init() { file_extensions_extension_proto_init() } func init() { file_extensions_extension_proto_init() }
...@@ -1839,7 +1911,7 @@ func file_extensions_extension_proto_init() { ...@@ -1839,7 +1911,7 @@ func file_extensions_extension_proto_init() {
File: protoimpl.DescBuilder{ File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(), GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_extensions_extension_proto_rawDesc, RawDescriptor: file_extensions_extension_proto_rawDesc,
NumEnums: 5, NumEnums: 6,
NumMessages: 14, NumMessages: 14,
NumExtensions: 0, NumExtensions: 0,
NumServices: 1, NumServices: 1,
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-go. DO NOT EDIT.
// versions: // versions:
// protoc-gen-go v1.31.0 // protoc-gen-go v1.30.0
// protoc v4.23.4 // protoc v4.23.4
// source: extensions/manager.proto // source: extensions/manager.proto
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment