@opsee/mcp-server 0.4.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,186 @@
1
+ // @generated by protoc-gen-es v2.2.3
2
+ // @generated from file api/v1/milestone_document.proto (package api.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv1";
6
+ import type { Message } from "@bufbuild/protobuf";
7
+ import type { Pagination } from "./pagination_pb";
8
+ import type { FilterOptions } from "./filter_pb";
9
+ import type { MilestoneDocument } from "./models_pb";
10
+ import type { EmptySchema } from "@bufbuild/protobuf/wkt";
11
+
12
+ /**
13
+ * Describes the file api/v1/milestone_document.proto.
14
+ */
15
+ export declare const file_api_v1_milestone_document: GenFile;
16
+
17
+ /**
18
+ * @generated from message api.v1.AddMilestoneDocumentRequest
19
+ */
20
+ export declare type AddMilestoneDocumentRequest = Message<"api.v1.AddMilestoneDocumentRequest"> & {
21
+ /**
22
+ * @generated from field: uint32 milestone_id = 1;
23
+ */
24
+ milestoneId: number;
25
+
26
+ /**
27
+ * @generated from field: uint32 document_id = 2;
28
+ */
29
+ documentId: number;
30
+ };
31
+
32
+ /**
33
+ * Describes the message api.v1.AddMilestoneDocumentRequest.
34
+ * Use `create(AddMilestoneDocumentRequestSchema)` to create a new message.
35
+ */
36
+ export declare const AddMilestoneDocumentRequestSchema: GenMessage<AddMilestoneDocumentRequest>;
37
+
38
+ /**
39
+ * @generated from message api.v1.GetMilestoneDocumentRequest
40
+ */
41
+ export declare type GetMilestoneDocumentRequest = Message<"api.v1.GetMilestoneDocumentRequest"> & {
42
+ /**
43
+ * @generated from field: uint32 id = 1;
44
+ */
45
+ id: number;
46
+ };
47
+
48
+ /**
49
+ * Describes the message api.v1.GetMilestoneDocumentRequest.
50
+ * Use `create(GetMilestoneDocumentRequestSchema)` to create a new message.
51
+ */
52
+ export declare const GetMilestoneDocumentRequestSchema: GenMessage<GetMilestoneDocumentRequest>;
53
+
54
+ /**
55
+ * @generated from message api.v1.GetMilestoneDocumentsRequest
56
+ */
57
+ export declare type GetMilestoneDocumentsRequest = Message<"api.v1.GetMilestoneDocumentsRequest"> & {
58
+ /**
59
+ * @generated from field: uint32 milestone_id = 1;
60
+ */
61
+ milestoneId: number;
62
+
63
+ /**
64
+ * @generated from field: api.v1.Pagination pagination = 2;
65
+ */
66
+ pagination?: Pagination;
67
+
68
+ /**
69
+ * @generated from field: api.v1.FilterOptions filter_options = 3;
70
+ */
71
+ filterOptions?: FilterOptions;
72
+ };
73
+
74
+ /**
75
+ * Describes the message api.v1.GetMilestoneDocumentsRequest.
76
+ * Use `create(GetMilestoneDocumentsRequestSchema)` to create a new message.
77
+ */
78
+ export declare const GetMilestoneDocumentsRequestSchema: GenMessage<GetMilestoneDocumentsRequest>;
79
+
80
+ /**
81
+ * @generated from message api.v1.DeleteMilestoneDocumentRequest
82
+ */
83
+ export declare type DeleteMilestoneDocumentRequest = Message<"api.v1.DeleteMilestoneDocumentRequest"> & {
84
+ /**
85
+ * @generated from field: uint32 id = 1;
86
+ */
87
+ id: number;
88
+ };
89
+
90
+ /**
91
+ * Describes the message api.v1.DeleteMilestoneDocumentRequest.
92
+ * Use `create(DeleteMilestoneDocumentRequestSchema)` to create a new message.
93
+ */
94
+ export declare const DeleteMilestoneDocumentRequestSchema: GenMessage<DeleteMilestoneDocumentRequest>;
95
+
96
+ /**
97
+ * @generated from message api.v1.AddMilestoneDocumentResponse
98
+ */
99
+ export declare type AddMilestoneDocumentResponse = Message<"api.v1.AddMilestoneDocumentResponse"> & {
100
+ /**
101
+ * @generated from field: api.v1.MilestoneDocument milestone_document = 1;
102
+ */
103
+ milestoneDocument?: MilestoneDocument;
104
+ };
105
+
106
+ /**
107
+ * Describes the message api.v1.AddMilestoneDocumentResponse.
108
+ * Use `create(AddMilestoneDocumentResponseSchema)` to create a new message.
109
+ */
110
+ export declare const AddMilestoneDocumentResponseSchema: GenMessage<AddMilestoneDocumentResponse>;
111
+
112
+ /**
113
+ * @generated from message api.v1.GetMilestoneDocumentResponse
114
+ */
115
+ export declare type GetMilestoneDocumentResponse = Message<"api.v1.GetMilestoneDocumentResponse"> & {
116
+ /**
117
+ * @generated from field: api.v1.MilestoneDocument milestone_document = 1;
118
+ */
119
+ milestoneDocument?: MilestoneDocument;
120
+ };
121
+
122
+ /**
123
+ * Describes the message api.v1.GetMilestoneDocumentResponse.
124
+ * Use `create(GetMilestoneDocumentResponseSchema)` to create a new message.
125
+ */
126
+ export declare const GetMilestoneDocumentResponseSchema: GenMessage<GetMilestoneDocumentResponse>;
127
+
128
+ /**
129
+ * @generated from message api.v1.GetMilestoneDocumentsResponse
130
+ */
131
+ export declare type GetMilestoneDocumentsResponse = Message<"api.v1.GetMilestoneDocumentsResponse"> & {
132
+ /**
133
+ * @generated from field: repeated api.v1.MilestoneDocument milestone_documents = 1;
134
+ */
135
+ milestoneDocuments: MilestoneDocument[];
136
+
137
+ /**
138
+ * @generated from field: api.v1.Pagination pagination = 2;
139
+ */
140
+ pagination?: Pagination;
141
+ };
142
+
143
+ /**
144
+ * Describes the message api.v1.GetMilestoneDocumentsResponse.
145
+ * Use `create(GetMilestoneDocumentsResponseSchema)` to create a new message.
146
+ */
147
+ export declare const GetMilestoneDocumentsResponseSchema: GenMessage<GetMilestoneDocumentsResponse>;
148
+
149
+ /**
150
+ * @generated from service api.v1.MilestoneDocumentService
151
+ */
152
+ export declare const MilestoneDocumentService: GenService<{
153
+ /**
154
+ * @generated from rpc api.v1.MilestoneDocumentService.AddMilestoneDocument
155
+ */
156
+ addMilestoneDocument: {
157
+ methodKind: "unary";
158
+ input: typeof AddMilestoneDocumentRequestSchema;
159
+ output: typeof AddMilestoneDocumentResponseSchema;
160
+ },
161
+ /**
162
+ * @generated from rpc api.v1.MilestoneDocumentService.GetMilestoneDocument
163
+ */
164
+ getMilestoneDocument: {
165
+ methodKind: "unary";
166
+ input: typeof GetMilestoneDocumentRequestSchema;
167
+ output: typeof GetMilestoneDocumentResponseSchema;
168
+ },
169
+ /**
170
+ * @generated from rpc api.v1.MilestoneDocumentService.GetMilestoneDocuments
171
+ */
172
+ getMilestoneDocuments: {
173
+ methodKind: "unary";
174
+ input: typeof GetMilestoneDocumentsRequestSchema;
175
+ output: typeof GetMilestoneDocumentsResponseSchema;
176
+ },
177
+ /**
178
+ * @generated from rpc api.v1.MilestoneDocumentService.DeleteMilestoneDocument
179
+ */
180
+ deleteMilestoneDocument: {
181
+ methodKind: "unary";
182
+ input: typeof DeleteMilestoneDocumentRequestSchema;
183
+ output: typeof EmptySchema;
184
+ },
185
+ }>;
186
+
@@ -0,0 +1,73 @@
1
+ // @generated by protoc-gen-es v2.2.3
2
+ // @generated from file api/v1/milestone_document.proto (package api.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv1";
6
+ import { file_google_protobuf_empty } from "@bufbuild/protobuf/wkt";
7
+ import { file_google_api_annotations } from "../../google/api/annotations_pb";
8
+ import { file_validate_validate } from "../../validate/validate_pb";
9
+ import { file_api_v1_pagination } from "./pagination_pb";
10
+ import { file_api_v1_filter } from "./filter_pb";
11
+ import { file_api_v1_models } from "./models_pb";
12
+
13
+ /**
14
+ * Describes the file api/v1/milestone_document.proto.
15
+ */
16
+ export const file_api_v1_milestone_document = /*@__PURE__*/
17
+ fileDesc("Ch9hcGkvdjEvbWlsZXN0b25lX2RvY3VtZW50LnByb3RvEgZhcGkudjEiWgobQWRkTWlsZXN0b25lRG9jdW1lbnRSZXF1ZXN0Eh0KDG1pbGVzdG9uZV9pZBgBIAEoDUIH+kIEKgIoARIcCgtkb2N1bWVudF9pZBgCIAEoDUIH+kIEKgIoASIpChtHZXRNaWxlc3RvbmVEb2N1bWVudFJlcXVlc3QSCgoCaWQYASABKA0ingEKHEdldE1pbGVzdG9uZURvY3VtZW50c1JlcXVlc3QSHQoMbWlsZXN0b25lX2lkGAEgASgNQgf6QgQqAigBEjAKCnBhZ2luYXRpb24YAiABKAsyEi5hcGkudjEuUGFnaW5hdGlvbkII+kIFigECEAESLQoOZmlsdGVyX29wdGlvbnMYAyABKAsyFS5hcGkudjEuRmlsdGVyT3B0aW9ucyIsCh5EZWxldGVNaWxlc3RvbmVEb2N1bWVudFJlcXVlc3QSCgoCaWQYASABKA0iVQocQWRkTWlsZXN0b25lRG9jdW1lbnRSZXNwb25zZRI1ChJtaWxlc3RvbmVfZG9jdW1lbnQYASABKAsyGS5hcGkudjEuTWlsZXN0b25lRG9jdW1lbnQiVQocR2V0TWlsZXN0b25lRG9jdW1lbnRSZXNwb25zZRI1ChJtaWxlc3RvbmVfZG9jdW1lbnQYASABKAsyGS5hcGkudjEuTWlsZXN0b25lRG9jdW1lbnQifwodR2V0TWlsZXN0b25lRG9jdW1lbnRzUmVzcG9uc2USNgoTbWlsZXN0b25lX2RvY3VtZW50cxgBIAMoCzIZLmFwaS52MS5NaWxlc3RvbmVEb2N1bWVudBImCgpwYWdpbmF0aW9uGAIgASgLMhIuYXBpLnYxLlBhZ2luYXRpb24yxgQKGE1pbGVzdG9uZURvY3VtZW50U2VydmljZRKJAQoUQWRkTWlsZXN0b25lRG9jdW1lbnQSIy5hcGkudjEuQWRkTWlsZXN0b25lRG9jdW1lbnRSZXF1ZXN0GiQuYXBpLnYxLkFkZE1pbGVzdG9uZURvY3VtZW50UmVzcG9uc2UiJoLT5JMCIDoBKiIbL2FwaS92MS9taWxlc3RvbmVfZG9jdW1lbnRzEosBChRHZXRNaWxlc3RvbmVEb2N1bWVudBIjLmFwaS52MS5HZXRNaWxlc3RvbmVEb2N1bWVudFJlcXVlc3QaJC5hcGkudjEuR2V0TWlsZXN0b25lRG9jdW1lbnRSZXNwb25zZSIogtPkkwIiEiAvYXBpL3YxL21pbGVzdG9uZV9kb2N1bWVudHMve2lkfRKJAQoVR2V0TWlsZXN0b25lRG9jdW1lbnRzEiQuYXBpLnYxLkdldE1pbGVzdG9uZURvY3VtZW50c1JlcXVlc3QaJS5hcGkudjEuR2V0TWlsZXN0b25lRG9jdW1lbnRzUmVzcG9uc2UiI4LT5JMCHRIbL2FwaS92MS9taWxlc3RvbmVfZG9jdW1lbnRzEoMBChdEZWxldGVNaWxlc3RvbmVEb2N1bWVudBImLmFwaS52MS5EZWxldGVNaWxlc3RvbmVEb2N1bWVudFJlcXVlc3QaFi5nb29nbGUucHJvdG9idWYuRW1wdHkiKILT5JMCIiogL2FwaS92MS9taWxlc3RvbmVfZG9jdW1lbnRzL3tpZH1CewoKY29tLmFwaS52MUIWTWlsZXN0b25lRG9jdW1lbnRQcm90b1ABWhxvcHNlZS9iYWNrZW5kL2dlbi9hcGkvdjE7Z2VuogIDQVhYqgIGQXBpLlYxygIGQXBpXFYx4gISQXBpXFYxXEdQQk1ldGFkYXRh6gIHQXBpOjpWMWIGcHJvdG8z", [file_google_protobuf_empty, file_google_api_annotations, file_validate_validate, file_api_v1_pagination, file_api_v1_filter, file_api_v1_models]);
18
+
19
+ /**
20
+ * Describes the message api.v1.AddMilestoneDocumentRequest.
21
+ * Use `create(AddMilestoneDocumentRequestSchema)` to create a new message.
22
+ */
23
+ export const AddMilestoneDocumentRequestSchema = /*@__PURE__*/
24
+ messageDesc(file_api_v1_milestone_document, 0);
25
+
26
+ /**
27
+ * Describes the message api.v1.GetMilestoneDocumentRequest.
28
+ * Use `create(GetMilestoneDocumentRequestSchema)` to create a new message.
29
+ */
30
+ export const GetMilestoneDocumentRequestSchema = /*@__PURE__*/
31
+ messageDesc(file_api_v1_milestone_document, 1);
32
+
33
+ /**
34
+ * Describes the message api.v1.GetMilestoneDocumentsRequest.
35
+ * Use `create(GetMilestoneDocumentsRequestSchema)` to create a new message.
36
+ */
37
+ export const GetMilestoneDocumentsRequestSchema = /*@__PURE__*/
38
+ messageDesc(file_api_v1_milestone_document, 2);
39
+
40
+ /**
41
+ * Describes the message api.v1.DeleteMilestoneDocumentRequest.
42
+ * Use `create(DeleteMilestoneDocumentRequestSchema)` to create a new message.
43
+ */
44
+ export const DeleteMilestoneDocumentRequestSchema = /*@__PURE__*/
45
+ messageDesc(file_api_v1_milestone_document, 3);
46
+
47
+ /**
48
+ * Describes the message api.v1.AddMilestoneDocumentResponse.
49
+ * Use `create(AddMilestoneDocumentResponseSchema)` to create a new message.
50
+ */
51
+ export const AddMilestoneDocumentResponseSchema = /*@__PURE__*/
52
+ messageDesc(file_api_v1_milestone_document, 4);
53
+
54
+ /**
55
+ * Describes the message api.v1.GetMilestoneDocumentResponse.
56
+ * Use `create(GetMilestoneDocumentResponseSchema)` to create a new message.
57
+ */
58
+ export const GetMilestoneDocumentResponseSchema = /*@__PURE__*/
59
+ messageDesc(file_api_v1_milestone_document, 5);
60
+
61
+ /**
62
+ * Describes the message api.v1.GetMilestoneDocumentsResponse.
63
+ * Use `create(GetMilestoneDocumentsResponseSchema)` to create a new message.
64
+ */
65
+ export const GetMilestoneDocumentsResponseSchema = /*@__PURE__*/
66
+ messageDesc(file_api_v1_milestone_document, 6);
67
+
68
+ /**
69
+ * @generated from service api.v1.MilestoneDocumentService
70
+ */
71
+ export const MilestoneDocumentService = /*@__PURE__*/
72
+ serviceDesc(file_api_v1_milestone_document, 0);
73
+
@@ -0,0 +1,295 @@
1
+ // @generated by protoc-gen-es v2.2.3
2
+ // @generated from file api/v1/milestone.proto (package api.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv1";
6
+ import type { Message } from "@bufbuild/protobuf";
7
+ import type { EmptySchema, Timestamp } from "@bufbuild/protobuf/wkt";
8
+ import type { Pagination } from "./pagination_pb";
9
+ import type { FilterOptions } from "./filter_pb";
10
+ import type { Milestone } from "./models_pb";
11
+
12
+ /**
13
+ * Describes the file api/v1/milestone.proto.
14
+ */
15
+ export declare const file_api_v1_milestone: GenFile;
16
+
17
+ /**
18
+ * @generated from message api.v1.AddMilestoneRequest
19
+ */
20
+ export declare type AddMilestoneRequest = Message<"api.v1.AddMilestoneRequest"> & {
21
+ /**
22
+ * @generated from field: string name = 1;
23
+ */
24
+ name: string;
25
+
26
+ /**
27
+ * @generated from field: optional string description = 2;
28
+ */
29
+ description?: string;
30
+
31
+ /**
32
+ * @generated from field: optional google.protobuf.Timestamp start_date = 3;
33
+ */
34
+ startDate?: Timestamp;
35
+
36
+ /**
37
+ * @generated from field: optional google.protobuf.Timestamp end_date = 4;
38
+ */
39
+ endDate?: Timestamp;
40
+
41
+ /**
42
+ * @generated from field: string status = 5;
43
+ */
44
+ status: string;
45
+
46
+ /**
47
+ * @generated from field: uint32 project_id = 6;
48
+ */
49
+ projectId: number;
50
+ };
51
+
52
+ /**
53
+ * Describes the message api.v1.AddMilestoneRequest.
54
+ * Use `create(AddMilestoneRequestSchema)` to create a new message.
55
+ */
56
+ export declare const AddMilestoneRequestSchema: GenMessage<AddMilestoneRequest>;
57
+
58
+ /**
59
+ * @generated from message api.v1.EditMilestoneRequest
60
+ */
61
+ export declare type EditMilestoneRequest = Message<"api.v1.EditMilestoneRequest"> & {
62
+ /**
63
+ * @generated from field: uint32 id = 1;
64
+ */
65
+ id: number;
66
+
67
+ /**
68
+ * @generated from field: string name = 2;
69
+ */
70
+ name: string;
71
+
72
+ /**
73
+ * @generated from field: optional string description = 3;
74
+ */
75
+ description?: string;
76
+
77
+ /**
78
+ * @generated from field: optional google.protobuf.Timestamp start_date = 4;
79
+ */
80
+ startDate?: Timestamp;
81
+
82
+ /**
83
+ * @generated from field: optional google.protobuf.Timestamp end_date = 5;
84
+ */
85
+ endDate?: Timestamp;
86
+
87
+ /**
88
+ * @generated from field: string status = 6;
89
+ */
90
+ status: string;
91
+ };
92
+
93
+ /**
94
+ * Describes the message api.v1.EditMilestoneRequest.
95
+ * Use `create(EditMilestoneRequestSchema)` to create a new message.
96
+ */
97
+ export declare const EditMilestoneRequestSchema: GenMessage<EditMilestoneRequest>;
98
+
99
+ /**
100
+ * @generated from message api.v1.GetMilestoneRequest
101
+ */
102
+ export declare type GetMilestoneRequest = Message<"api.v1.GetMilestoneRequest"> & {
103
+ /**
104
+ * @generated from field: uint32 id = 1;
105
+ */
106
+ id: number;
107
+ };
108
+
109
+ /**
110
+ * Describes the message api.v1.GetMilestoneRequest.
111
+ * Use `create(GetMilestoneRequestSchema)` to create a new message.
112
+ */
113
+ export declare const GetMilestoneRequestSchema: GenMessage<GetMilestoneRequest>;
114
+
115
+ /**
116
+ * @generated from message api.v1.GetMilestoneByUUIDRequest
117
+ */
118
+ export declare type GetMilestoneByUUIDRequest = Message<"api.v1.GetMilestoneByUUIDRequest"> & {
119
+ /**
120
+ * @generated from field: string uuid = 1;
121
+ */
122
+ uuid: string;
123
+ };
124
+
125
+ /**
126
+ * Describes the message api.v1.GetMilestoneByUUIDRequest.
127
+ * Use `create(GetMilestoneByUUIDRequestSchema)` to create a new message.
128
+ */
129
+ export declare const GetMilestoneByUUIDRequestSchema: GenMessage<GetMilestoneByUUIDRequest>;
130
+
131
+ /**
132
+ * @generated from message api.v1.GetMilestonesRequest
133
+ */
134
+ export declare type GetMilestonesRequest = Message<"api.v1.GetMilestonesRequest"> & {
135
+ /**
136
+ * @generated from field: uint32 project_id = 1;
137
+ */
138
+ projectId: number;
139
+
140
+ /**
141
+ * @generated from field: api.v1.Pagination pagination = 2;
142
+ */
143
+ pagination?: Pagination;
144
+
145
+ /**
146
+ * @generated from field: api.v1.FilterOptions filter_options = 3;
147
+ */
148
+ filterOptions?: FilterOptions;
149
+ };
150
+
151
+ /**
152
+ * Describes the message api.v1.GetMilestonesRequest.
153
+ * Use `create(GetMilestonesRequestSchema)` to create a new message.
154
+ */
155
+ export declare const GetMilestonesRequestSchema: GenMessage<GetMilestonesRequest>;
156
+
157
+ /**
158
+ * @generated from message api.v1.DeleteMilestoneRequest
159
+ */
160
+ export declare type DeleteMilestoneRequest = Message<"api.v1.DeleteMilestoneRequest"> & {
161
+ /**
162
+ * @generated from field: uint32 id = 1;
163
+ */
164
+ id: number;
165
+ };
166
+
167
+ /**
168
+ * Describes the message api.v1.DeleteMilestoneRequest.
169
+ * Use `create(DeleteMilestoneRequestSchema)` to create a new message.
170
+ */
171
+ export declare const DeleteMilestoneRequestSchema: GenMessage<DeleteMilestoneRequest>;
172
+
173
+ /**
174
+ * @generated from message api.v1.AddMilestoneResponse
175
+ */
176
+ export declare type AddMilestoneResponse = Message<"api.v1.AddMilestoneResponse"> & {
177
+ /**
178
+ * @generated from field: api.v1.Milestone milestone = 1;
179
+ */
180
+ milestone?: Milestone;
181
+ };
182
+
183
+ /**
184
+ * Describes the message api.v1.AddMilestoneResponse.
185
+ * Use `create(AddMilestoneResponseSchema)` to create a new message.
186
+ */
187
+ export declare const AddMilestoneResponseSchema: GenMessage<AddMilestoneResponse>;
188
+
189
+ /**
190
+ * @generated from message api.v1.EditMilestoneResponse
191
+ */
192
+ export declare type EditMilestoneResponse = Message<"api.v1.EditMilestoneResponse"> & {
193
+ /**
194
+ * @generated from field: api.v1.Milestone milestone = 1;
195
+ */
196
+ milestone?: Milestone;
197
+ };
198
+
199
+ /**
200
+ * Describes the message api.v1.EditMilestoneResponse.
201
+ * Use `create(EditMilestoneResponseSchema)` to create a new message.
202
+ */
203
+ export declare const EditMilestoneResponseSchema: GenMessage<EditMilestoneResponse>;
204
+
205
+ /**
206
+ * @generated from message api.v1.GetMilestoneResponse
207
+ */
208
+ export declare type GetMilestoneResponse = Message<"api.v1.GetMilestoneResponse"> & {
209
+ /**
210
+ * @generated from field: api.v1.Milestone milestone = 1;
211
+ */
212
+ milestone?: Milestone;
213
+ };
214
+
215
+ /**
216
+ * Describes the message api.v1.GetMilestoneResponse.
217
+ * Use `create(GetMilestoneResponseSchema)` to create a new message.
218
+ */
219
+ export declare const GetMilestoneResponseSchema: GenMessage<GetMilestoneResponse>;
220
+
221
+ /**
222
+ * @generated from message api.v1.GetMilestonesResponse
223
+ */
224
+ export declare type GetMilestonesResponse = Message<"api.v1.GetMilestonesResponse"> & {
225
+ /**
226
+ * @generated from field: repeated api.v1.Milestone milestones = 1;
227
+ */
228
+ milestones: Milestone[];
229
+
230
+ /**
231
+ * @generated from field: api.v1.Pagination pagination = 2;
232
+ */
233
+ pagination?: Pagination;
234
+ };
235
+
236
+ /**
237
+ * Describes the message api.v1.GetMilestonesResponse.
238
+ * Use `create(GetMilestonesResponseSchema)` to create a new message.
239
+ */
240
+ export declare const GetMilestonesResponseSchema: GenMessage<GetMilestonesResponse>;
241
+
242
+ /**
243
+ * @generated from service api.v1.MilestoneService
244
+ */
245
+ export declare const MilestoneService: GenService<{
246
+ /**
247
+ * @generated from rpc api.v1.MilestoneService.AddMilestone
248
+ */
249
+ addMilestone: {
250
+ methodKind: "unary";
251
+ input: typeof AddMilestoneRequestSchema;
252
+ output: typeof AddMilestoneResponseSchema;
253
+ },
254
+ /**
255
+ * @generated from rpc api.v1.MilestoneService.EditMilestone
256
+ */
257
+ editMilestone: {
258
+ methodKind: "unary";
259
+ input: typeof EditMilestoneRequestSchema;
260
+ output: typeof EditMilestoneResponseSchema;
261
+ },
262
+ /**
263
+ * @generated from rpc api.v1.MilestoneService.GetMilestone
264
+ */
265
+ getMilestone: {
266
+ methodKind: "unary";
267
+ input: typeof GetMilestoneRequestSchema;
268
+ output: typeof GetMilestoneResponseSchema;
269
+ },
270
+ /**
271
+ * @generated from rpc api.v1.MilestoneService.GetMilestoneByUUID
272
+ */
273
+ getMilestoneByUUID: {
274
+ methodKind: "unary";
275
+ input: typeof GetMilestoneByUUIDRequestSchema;
276
+ output: typeof GetMilestoneResponseSchema;
277
+ },
278
+ /**
279
+ * @generated from rpc api.v1.MilestoneService.GetMilestones
280
+ */
281
+ getMilestones: {
282
+ methodKind: "unary";
283
+ input: typeof GetMilestonesRequestSchema;
284
+ output: typeof GetMilestonesResponseSchema;
285
+ },
286
+ /**
287
+ * @generated from rpc api.v1.MilestoneService.DeleteMilestone
288
+ */
289
+ deleteMilestone: {
290
+ methodKind: "unary";
291
+ input: typeof DeleteMilestoneRequestSchema;
292
+ output: typeof EmptySchema;
293
+ },
294
+ }>;
295
+
@@ -0,0 +1,94 @@
1
+ // @generated by protoc-gen-es v2.2.3
2
+ // @generated from file api/v1/milestone.proto (package api.v1, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv1";
6
+ import { file_google_protobuf_empty, file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
7
+ import { file_google_api_annotations } from "../../google/api/annotations_pb";
8
+ import { file_validate_validate } from "../../validate/validate_pb";
9
+ import { file_api_v1_pagination } from "./pagination_pb";
10
+ import { file_api_v1_filter } from "./filter_pb";
11
+ import { file_api_v1_models } from "./models_pb";
12
+
13
+ /**
14
+ * Describes the file api/v1/milestone.proto.
15
+ */
16
+ export const file_api_v1_milestone = /*@__PURE__*/
17
+ fileDesc("ChZhcGkvdjEvbWlsZXN0b25lLnByb3RvEgZhcGkudjEiuwIKE0FkZE1pbGVzdG9uZVJlcXVlc3QSFwoEbmFtZRgBIAEoCUIJ+kIGcgQQARhkEhgKC2Rlc2NyaXB0aW9uGAIgASgJSACIAQESMwoKc3RhcnRfZGF0ZRgDIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXBIAYgBARIxCghlbmRfZGF0ZRgEIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXBIAogBARJACgZzdGF0dXMYBSABKAlCMPpCLXIrUgdQbGFubmVkUgpJblByb2dyZXNzUglDb21wbGV0ZWRSCUNhbmNlbGxlZBIbCgpwcm9qZWN0X2lkGAYgASgNQgf6QgQqAigBQg4KDF9kZXNjcmlwdGlvbkINCgtfc3RhcnRfZGF0ZUILCglfZW5kX2RhdGUitAIKFEVkaXRNaWxlc3RvbmVSZXF1ZXN0EhMKAmlkGAEgASgNQgf6QgQqAigBEhcKBG5hbWUYAiABKAlCCfpCBnIEEAEYZBIYCgtkZXNjcmlwdGlvbhgDIAEoCUgAiAEBEjMKCnN0YXJ0X2RhdGUYBCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSAGIAQESMQoIZW5kX2RhdGUYBSABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSAKIAQESQAoGc3RhdHVzGAYgASgJQjD6Qi1yK1IHUGxhbm5lZFIKSW5Qcm9ncmVzc1IJQ29tcGxldGVkUglDYW5jZWxsZWRCDgoMX2Rlc2NyaXB0aW9uQg0KC19zdGFydF9kYXRlQgsKCV9lbmRfZGF0ZSIhChNHZXRNaWxlc3RvbmVSZXF1ZXN0EgoKAmlkGAEgASgNIjMKGUdldE1pbGVzdG9uZUJ5VVVJRFJlcXVlc3QSFgoEdXVpZBgBIAEoCUII+kIFcgOwAQEilAEKFEdldE1pbGVzdG9uZXNSZXF1ZXN0EhsKCnByb2plY3RfaWQYASABKA1CB/pCBCoCKAESMAoKcGFnaW5hdGlvbhgCIAEoCzISLmFwaS52MS5QYWdpbmF0aW9uQgj6QgWKAQIQARItCg5maWx0ZXJfb3B0aW9ucxgDIAEoCzIVLmFwaS52MS5GaWx0ZXJPcHRpb25zIiQKFkRlbGV0ZU1pbGVzdG9uZVJlcXVlc3QSCgoCaWQYASABKA0iPAoUQWRkTWlsZXN0b25lUmVzcG9uc2USJAoJbWlsZXN0b25lGAEgASgLMhEuYXBpLnYxLk1pbGVzdG9uZSI9ChVFZGl0TWlsZXN0b25lUmVzcG9uc2USJAoJbWlsZXN0b25lGAEgASgLMhEuYXBpLnYxLk1pbGVzdG9uZSI8ChRHZXRNaWxlc3RvbmVSZXNwb25zZRIkCgltaWxlc3RvbmUYASABKAsyES5hcGkudjEuTWlsZXN0b25lImYKFUdldE1pbGVzdG9uZXNSZXNwb25zZRIlCgptaWxlc3RvbmVzGAEgAygLMhEuYXBpLnYxLk1pbGVzdG9uZRImCgpwYWdpbmF0aW9uGAIgASgLMhIuYXBpLnYxLlBhZ2luYXRpb24yrwUKEE1pbGVzdG9uZVNlcnZpY2USaAoMQWRkTWlsZXN0b25lEhsuYXBpLnYxLkFkZE1pbGVzdG9uZVJlcXVlc3QaHC5hcGkudjEuQWRkTWlsZXN0b25lUmVzcG9uc2UiHYLT5JMCFzoBKiISL2FwaS92MS9taWxlc3RvbmVzEnAKDUVkaXRNaWxlc3RvbmUSHC5hcGkudjEuRWRpdE1pbGVzdG9uZVJlcXVlc3QaHS5hcGkudjEuRWRpdE1pbGVzdG9uZVJlc3BvbnNlIiKC0+STAhw6ASoaFy9hcGkvdjEvbWlsZXN0b25lcy97aWR9EmoKDEdldE1pbGVzdG9uZRIbLmFwaS52MS5HZXRNaWxlc3RvbmVSZXF1ZXN0GhwuYXBpLnYxLkdldE1pbGVzdG9uZVJlc3BvbnNlIh+C0+STAhkSFy9hcGkvdjEvbWlsZXN0b25lcy97aWR9En0KEkdldE1pbGVzdG9uZUJ5VVVJRBIhLmFwaS52MS5HZXRNaWxlc3RvbmVCeVVVSURSZXF1ZXN0GhwuYXBpLnYxLkdldE1pbGVzdG9uZVJlc3BvbnNlIiaC0+STAiASHi9hcGkvdjEvbWlsZXN0b25lcy91dWlkL3t1dWlkfRJoCg1HZXRNaWxlc3RvbmVzEhwuYXBpLnYxLkdldE1pbGVzdG9uZXNSZXF1ZXN0Gh0uYXBpLnYxLkdldE1pbGVzdG9uZXNSZXNwb25zZSIagtPkkwIUEhIvYXBpL3YxL21pbGVzdG9uZXMSagoPRGVsZXRlTWlsZXN0b25lEh4uYXBpLnYxLkRlbGV0ZU1pbGVzdG9uZVJlcXVlc3QaFi5nb29nbGUucHJvdG9idWYuRW1wdHkiH4LT5JMCGSoXL2FwaS92MS9taWxlc3RvbmVzL3tpZH1CcwoKY29tLmFwaS52MUIOTWlsZXN0b25lUHJvdG9QAVocb3BzZWUvYmFja2VuZC9nZW4vYXBpL3YxO2dlbqICA0FYWKoCBkFwaS5WMcoCBkFwaVxWMeICEkFwaVxWMVxHUEJNZXRhZGF0YeoCB0FwaTo6VjFiBnByb3RvMw", [file_google_protobuf_empty, file_google_protobuf_timestamp, file_google_api_annotations, file_validate_validate, file_api_v1_pagination, file_api_v1_filter, file_api_v1_models]);
18
+
19
+ /**
20
+ * Describes the message api.v1.AddMilestoneRequest.
21
+ * Use `create(AddMilestoneRequestSchema)` to create a new message.
22
+ */
23
+ export const AddMilestoneRequestSchema = /*@__PURE__*/
24
+ messageDesc(file_api_v1_milestone, 0);
25
+
26
+ /**
27
+ * Describes the message api.v1.EditMilestoneRequest.
28
+ * Use `create(EditMilestoneRequestSchema)` to create a new message.
29
+ */
30
+ export const EditMilestoneRequestSchema = /*@__PURE__*/
31
+ messageDesc(file_api_v1_milestone, 1);
32
+
33
+ /**
34
+ * Describes the message api.v1.GetMilestoneRequest.
35
+ * Use `create(GetMilestoneRequestSchema)` to create a new message.
36
+ */
37
+ export const GetMilestoneRequestSchema = /*@__PURE__*/
38
+ messageDesc(file_api_v1_milestone, 2);
39
+
40
+ /**
41
+ * Describes the message api.v1.GetMilestoneByUUIDRequest.
42
+ * Use `create(GetMilestoneByUUIDRequestSchema)` to create a new message.
43
+ */
44
+ export const GetMilestoneByUUIDRequestSchema = /*@__PURE__*/
45
+ messageDesc(file_api_v1_milestone, 3);
46
+
47
+ /**
48
+ * Describes the message api.v1.GetMilestonesRequest.
49
+ * Use `create(GetMilestonesRequestSchema)` to create a new message.
50
+ */
51
+ export const GetMilestonesRequestSchema = /*@__PURE__*/
52
+ messageDesc(file_api_v1_milestone, 4);
53
+
54
+ /**
55
+ * Describes the message api.v1.DeleteMilestoneRequest.
56
+ * Use `create(DeleteMilestoneRequestSchema)` to create a new message.
57
+ */
58
+ export const DeleteMilestoneRequestSchema = /*@__PURE__*/
59
+ messageDesc(file_api_v1_milestone, 5);
60
+
61
+ /**
62
+ * Describes the message api.v1.AddMilestoneResponse.
63
+ * Use `create(AddMilestoneResponseSchema)` to create a new message.
64
+ */
65
+ export const AddMilestoneResponseSchema = /*@__PURE__*/
66
+ messageDesc(file_api_v1_milestone, 6);
67
+
68
+ /**
69
+ * Describes the message api.v1.EditMilestoneResponse.
70
+ * Use `create(EditMilestoneResponseSchema)` to create a new message.
71
+ */
72
+ export const EditMilestoneResponseSchema = /*@__PURE__*/
73
+ messageDesc(file_api_v1_milestone, 7);
74
+
75
+ /**
76
+ * Describes the message api.v1.GetMilestoneResponse.
77
+ * Use `create(GetMilestoneResponseSchema)` to create a new message.
78
+ */
79
+ export const GetMilestoneResponseSchema = /*@__PURE__*/
80
+ messageDesc(file_api_v1_milestone, 8);
81
+
82
+ /**
83
+ * Describes the message api.v1.GetMilestonesResponse.
84
+ * Use `create(GetMilestonesResponseSchema)` to create a new message.
85
+ */
86
+ export const GetMilestonesResponseSchema = /*@__PURE__*/
87
+ messageDesc(file_api_v1_milestone, 9);
88
+
89
+ /**
90
+ * @generated from service api.v1.MilestoneService
91
+ */
92
+ export const MilestoneService = /*@__PURE__*/
93
+ serviceDesc(file_api_v1_milestone, 0);
94
+