@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.
- package/gen/api/v1/dashboard_pb.d.ts +639 -0
- package/gen/api/v1/dashboard_pb.js +148 -0
- package/gen/api/v1/doc_page_pb.d.ts +136 -0
- package/gen/api/v1/doc_page_pb.js +36 -1
- package/gen/api/v1/milestone_doc_page_pb.d.ts +186 -0
- package/gen/api/v1/milestone_doc_page_pb.js +73 -0
- package/gen/api/v1/milestone_document_pb.d.ts +186 -0
- package/gen/api/v1/milestone_document_pb.js +73 -0
- package/gen/api/v1/milestone_pb.d.ts +295 -0
- package/gen/api/v1/milestone_pb.js +94 -0
- package/gen/api/v1/milestone_repository_pb.d.ts +186 -0
- package/gen/api/v1/milestone_repository_pb.js +73 -0
- package/gen/api/v1/milestone_task_pb.d.ts +186 -0
- package/gen/api/v1/milestone_task_pb.js +73 -0
- package/gen/api/v1/models_pb.d.ts +280 -0
- package/gen/api/v1/models_pb.js +36 -1
- package/gen/api/v1/orchestrator_pb.d.ts +388 -0
- package/gen/api/v1/orchestrator_pb.js +85 -1
- package/gen/api/v1/project_pb.js +1 -1
- package/gen/api/v1/task_pb.d.ts +45 -0
- package/gen/api/v1/task_pb.js +18 -4
- package/package.json +1 -1
- package/src/client/api.ts +6 -0
- package/src/server.ts +2 -0
- package/src/tools/milestones.ts +189 -0
- package/src/utils/format.ts +39 -1
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.3
|
|
2
|
+
// @generated from file api/v1/milestone_repository.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 { MilestoneRepository } from "./models_pb";
|
|
10
|
+
import type { EmptySchema } from "@bufbuild/protobuf/wkt";
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Describes the file api/v1/milestone_repository.proto.
|
|
14
|
+
*/
|
|
15
|
+
export declare const file_api_v1_milestone_repository: GenFile;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* @generated from message api.v1.AddMilestoneRepositoryRequest
|
|
19
|
+
*/
|
|
20
|
+
export declare type AddMilestoneRepositoryRequest = Message<"api.v1.AddMilestoneRepositoryRequest"> & {
|
|
21
|
+
/**
|
|
22
|
+
* @generated from field: uint32 milestone_id = 1;
|
|
23
|
+
*/
|
|
24
|
+
milestoneId: number;
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* @generated from field: uint32 git_hub_integration_id = 2;
|
|
28
|
+
*/
|
|
29
|
+
gitHubIntegrationId: number;
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Describes the message api.v1.AddMilestoneRepositoryRequest.
|
|
34
|
+
* Use `create(AddMilestoneRepositoryRequestSchema)` to create a new message.
|
|
35
|
+
*/
|
|
36
|
+
export declare const AddMilestoneRepositoryRequestSchema: GenMessage<AddMilestoneRepositoryRequest>;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @generated from message api.v1.GetMilestoneRepositoryRequest
|
|
40
|
+
*/
|
|
41
|
+
export declare type GetMilestoneRepositoryRequest = Message<"api.v1.GetMilestoneRepositoryRequest"> & {
|
|
42
|
+
/**
|
|
43
|
+
* @generated from field: uint32 id = 1;
|
|
44
|
+
*/
|
|
45
|
+
id: number;
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Describes the message api.v1.GetMilestoneRepositoryRequest.
|
|
50
|
+
* Use `create(GetMilestoneRepositoryRequestSchema)` to create a new message.
|
|
51
|
+
*/
|
|
52
|
+
export declare const GetMilestoneRepositoryRequestSchema: GenMessage<GetMilestoneRepositoryRequest>;
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* @generated from message api.v1.GetMilestoneRepositoriesRequest
|
|
56
|
+
*/
|
|
57
|
+
export declare type GetMilestoneRepositoriesRequest = Message<"api.v1.GetMilestoneRepositoriesRequest"> & {
|
|
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.GetMilestoneRepositoriesRequest.
|
|
76
|
+
* Use `create(GetMilestoneRepositoriesRequestSchema)` to create a new message.
|
|
77
|
+
*/
|
|
78
|
+
export declare const GetMilestoneRepositoriesRequestSchema: GenMessage<GetMilestoneRepositoriesRequest>;
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* @generated from message api.v1.DeleteMilestoneRepositoryRequest
|
|
82
|
+
*/
|
|
83
|
+
export declare type DeleteMilestoneRepositoryRequest = Message<"api.v1.DeleteMilestoneRepositoryRequest"> & {
|
|
84
|
+
/**
|
|
85
|
+
* @generated from field: uint32 id = 1;
|
|
86
|
+
*/
|
|
87
|
+
id: number;
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Describes the message api.v1.DeleteMilestoneRepositoryRequest.
|
|
92
|
+
* Use `create(DeleteMilestoneRepositoryRequestSchema)` to create a new message.
|
|
93
|
+
*/
|
|
94
|
+
export declare const DeleteMilestoneRepositoryRequestSchema: GenMessage<DeleteMilestoneRepositoryRequest>;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* @generated from message api.v1.AddMilestoneRepositoryResponse
|
|
98
|
+
*/
|
|
99
|
+
export declare type AddMilestoneRepositoryResponse = Message<"api.v1.AddMilestoneRepositoryResponse"> & {
|
|
100
|
+
/**
|
|
101
|
+
* @generated from field: api.v1.MilestoneRepository milestone_repository = 1;
|
|
102
|
+
*/
|
|
103
|
+
milestoneRepository?: MilestoneRepository;
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Describes the message api.v1.AddMilestoneRepositoryResponse.
|
|
108
|
+
* Use `create(AddMilestoneRepositoryResponseSchema)` to create a new message.
|
|
109
|
+
*/
|
|
110
|
+
export declare const AddMilestoneRepositoryResponseSchema: GenMessage<AddMilestoneRepositoryResponse>;
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* @generated from message api.v1.GetMilestoneRepositoryResponse
|
|
114
|
+
*/
|
|
115
|
+
export declare type GetMilestoneRepositoryResponse = Message<"api.v1.GetMilestoneRepositoryResponse"> & {
|
|
116
|
+
/**
|
|
117
|
+
* @generated from field: api.v1.MilestoneRepository milestone_repository = 1;
|
|
118
|
+
*/
|
|
119
|
+
milestoneRepository?: MilestoneRepository;
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* Describes the message api.v1.GetMilestoneRepositoryResponse.
|
|
124
|
+
* Use `create(GetMilestoneRepositoryResponseSchema)` to create a new message.
|
|
125
|
+
*/
|
|
126
|
+
export declare const GetMilestoneRepositoryResponseSchema: GenMessage<GetMilestoneRepositoryResponse>;
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* @generated from message api.v1.GetMilestoneRepositoriesResponse
|
|
130
|
+
*/
|
|
131
|
+
export declare type GetMilestoneRepositoriesResponse = Message<"api.v1.GetMilestoneRepositoriesResponse"> & {
|
|
132
|
+
/**
|
|
133
|
+
* @generated from field: repeated api.v1.MilestoneRepository milestone_repositories = 1;
|
|
134
|
+
*/
|
|
135
|
+
milestoneRepositories: MilestoneRepository[];
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* @generated from field: api.v1.Pagination pagination = 2;
|
|
139
|
+
*/
|
|
140
|
+
pagination?: Pagination;
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Describes the message api.v1.GetMilestoneRepositoriesResponse.
|
|
145
|
+
* Use `create(GetMilestoneRepositoriesResponseSchema)` to create a new message.
|
|
146
|
+
*/
|
|
147
|
+
export declare const GetMilestoneRepositoriesResponseSchema: GenMessage<GetMilestoneRepositoriesResponse>;
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* @generated from service api.v1.MilestoneRepositoryService
|
|
151
|
+
*/
|
|
152
|
+
export declare const MilestoneRepositoryService: GenService<{
|
|
153
|
+
/**
|
|
154
|
+
* @generated from rpc api.v1.MilestoneRepositoryService.AddMilestoneRepository
|
|
155
|
+
*/
|
|
156
|
+
addMilestoneRepository: {
|
|
157
|
+
methodKind: "unary";
|
|
158
|
+
input: typeof AddMilestoneRepositoryRequestSchema;
|
|
159
|
+
output: typeof AddMilestoneRepositoryResponseSchema;
|
|
160
|
+
},
|
|
161
|
+
/**
|
|
162
|
+
* @generated from rpc api.v1.MilestoneRepositoryService.GetMilestoneRepository
|
|
163
|
+
*/
|
|
164
|
+
getMilestoneRepository: {
|
|
165
|
+
methodKind: "unary";
|
|
166
|
+
input: typeof GetMilestoneRepositoryRequestSchema;
|
|
167
|
+
output: typeof GetMilestoneRepositoryResponseSchema;
|
|
168
|
+
},
|
|
169
|
+
/**
|
|
170
|
+
* @generated from rpc api.v1.MilestoneRepositoryService.GetMilestoneRepositories
|
|
171
|
+
*/
|
|
172
|
+
getMilestoneRepositories: {
|
|
173
|
+
methodKind: "unary";
|
|
174
|
+
input: typeof GetMilestoneRepositoriesRequestSchema;
|
|
175
|
+
output: typeof GetMilestoneRepositoriesResponseSchema;
|
|
176
|
+
},
|
|
177
|
+
/**
|
|
178
|
+
* @generated from rpc api.v1.MilestoneRepositoryService.DeleteMilestoneRepository
|
|
179
|
+
*/
|
|
180
|
+
deleteMilestoneRepository: {
|
|
181
|
+
methodKind: "unary";
|
|
182
|
+
input: typeof DeleteMilestoneRepositoryRequestSchema;
|
|
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_repository.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_repository.proto.
|
|
15
|
+
*/
|
|
16
|
+
export const file_api_v1_milestone_repository = /*@__PURE__*/
|
|
17
|
+
fileDesc("CiFhcGkvdjEvbWlsZXN0b25lX3JlcG9zaXRvcnkucHJvdG8SBmFwaS52MSJnCh1BZGRNaWxlc3RvbmVSZXBvc2l0b3J5UmVxdWVzdBIdCgxtaWxlc3RvbmVfaWQYASABKA1CB/pCBCoCKAESJwoWZ2l0X2h1Yl9pbnRlZ3JhdGlvbl9pZBgCIAEoDUIH+kIEKgIoASIrCh1HZXRNaWxlc3RvbmVSZXBvc2l0b3J5UmVxdWVzdBIKCgJpZBgBIAEoDSKhAQofR2V0TWlsZXN0b25lUmVwb3NpdG9yaWVzUmVxdWVzdBIdCgxtaWxlc3RvbmVfaWQYASABKA1CB/pCBCoCKAESMAoKcGFnaW5hdGlvbhgCIAEoCzISLmFwaS52MS5QYWdpbmF0aW9uQgj6QgWKAQIQARItCg5maWx0ZXJfb3B0aW9ucxgDIAEoCzIVLmFwaS52MS5GaWx0ZXJPcHRpb25zIi4KIERlbGV0ZU1pbGVzdG9uZVJlcG9zaXRvcnlSZXF1ZXN0EgoKAmlkGAEgASgNIlsKHkFkZE1pbGVzdG9uZVJlcG9zaXRvcnlSZXNwb25zZRI5ChRtaWxlc3RvbmVfcmVwb3NpdG9yeRgBIAEoCzIbLmFwaS52MS5NaWxlc3RvbmVSZXBvc2l0b3J5IlsKHkdldE1pbGVzdG9uZVJlcG9zaXRvcnlSZXNwb25zZRI5ChRtaWxlc3RvbmVfcmVwb3NpdG9yeRgBIAEoCzIbLmFwaS52MS5NaWxlc3RvbmVSZXBvc2l0b3J5IocBCiBHZXRNaWxlc3RvbmVSZXBvc2l0b3JpZXNSZXNwb25zZRI7ChZtaWxlc3RvbmVfcmVwb3NpdG9yaWVzGAEgAygLMhsuYXBpLnYxLk1pbGVzdG9uZVJlcG9zaXRvcnkSJgoKcGFnaW5hdGlvbhgCIAEoCzISLmFwaS52MS5QYWdpbmF0aW9uMu0EChpNaWxlc3RvbmVSZXBvc2l0b3J5U2VydmljZRKSAQoWQWRkTWlsZXN0b25lUmVwb3NpdG9yeRIlLmFwaS52MS5BZGRNaWxlc3RvbmVSZXBvc2l0b3J5UmVxdWVzdBomLmFwaS52MS5BZGRNaWxlc3RvbmVSZXBvc2l0b3J5UmVzcG9uc2UiKYLT5JMCIzoBKiIeL2FwaS92MS9taWxlc3RvbmVfcmVwb3NpdG9yaWVzEpQBChZHZXRNaWxlc3RvbmVSZXBvc2l0b3J5EiUuYXBpLnYxLkdldE1pbGVzdG9uZVJlcG9zaXRvcnlSZXF1ZXN0GiYuYXBpLnYxLkdldE1pbGVzdG9uZVJlcG9zaXRvcnlSZXNwb25zZSIrgtPkkwIlEiMvYXBpL3YxL21pbGVzdG9uZV9yZXBvc2l0b3JpZXMve2lkfRKVAQoYR2V0TWlsZXN0b25lUmVwb3NpdG9yaWVzEicuYXBpLnYxLkdldE1pbGVzdG9uZVJlcG9zaXRvcmllc1JlcXVlc3QaKC5hcGkudjEuR2V0TWlsZXN0b25lUmVwb3NpdG9yaWVzUmVzcG9uc2UiJoLT5JMCIBIeL2FwaS92MS9taWxlc3RvbmVfcmVwb3NpdG9yaWVzEooBChlEZWxldGVNaWxlc3RvbmVSZXBvc2l0b3J5EiguYXBpLnYxLkRlbGV0ZU1pbGVzdG9uZVJlcG9zaXRvcnlSZXF1ZXN0GhYuZ29vZ2xlLnByb3RvYnVmLkVtcHR5IiuC0+STAiUqIy9hcGkvdjEvbWlsZXN0b25lX3JlcG9zaXRvcmllcy97aWR9Qn0KCmNvbS5hcGkudjFCGE1pbGVzdG9uZVJlcG9zaXRvcnlQcm90b1ABWhxvcHNlZS9iYWNrZW5kL2dlbi9hcGkvdjE7Z2VuogIDQVhYqgIGQXBpLlYxygIGQXBpXFYx4gISQXBpXFYxXEdQQk1ldGFkYXRh6gIHQXBpOjpWMWIGcHJvdG8z", [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.AddMilestoneRepositoryRequest.
|
|
21
|
+
* Use `create(AddMilestoneRepositoryRequestSchema)` to create a new message.
|
|
22
|
+
*/
|
|
23
|
+
export const AddMilestoneRepositoryRequestSchema = /*@__PURE__*/
|
|
24
|
+
messageDesc(file_api_v1_milestone_repository, 0);
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Describes the message api.v1.GetMilestoneRepositoryRequest.
|
|
28
|
+
* Use `create(GetMilestoneRepositoryRequestSchema)` to create a new message.
|
|
29
|
+
*/
|
|
30
|
+
export const GetMilestoneRepositoryRequestSchema = /*@__PURE__*/
|
|
31
|
+
messageDesc(file_api_v1_milestone_repository, 1);
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Describes the message api.v1.GetMilestoneRepositoriesRequest.
|
|
35
|
+
* Use `create(GetMilestoneRepositoriesRequestSchema)` to create a new message.
|
|
36
|
+
*/
|
|
37
|
+
export const GetMilestoneRepositoriesRequestSchema = /*@__PURE__*/
|
|
38
|
+
messageDesc(file_api_v1_milestone_repository, 2);
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Describes the message api.v1.DeleteMilestoneRepositoryRequest.
|
|
42
|
+
* Use `create(DeleteMilestoneRepositoryRequestSchema)` to create a new message.
|
|
43
|
+
*/
|
|
44
|
+
export const DeleteMilestoneRepositoryRequestSchema = /*@__PURE__*/
|
|
45
|
+
messageDesc(file_api_v1_milestone_repository, 3);
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Describes the message api.v1.AddMilestoneRepositoryResponse.
|
|
49
|
+
* Use `create(AddMilestoneRepositoryResponseSchema)` to create a new message.
|
|
50
|
+
*/
|
|
51
|
+
export const AddMilestoneRepositoryResponseSchema = /*@__PURE__*/
|
|
52
|
+
messageDesc(file_api_v1_milestone_repository, 4);
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Describes the message api.v1.GetMilestoneRepositoryResponse.
|
|
56
|
+
* Use `create(GetMilestoneRepositoryResponseSchema)` to create a new message.
|
|
57
|
+
*/
|
|
58
|
+
export const GetMilestoneRepositoryResponseSchema = /*@__PURE__*/
|
|
59
|
+
messageDesc(file_api_v1_milestone_repository, 5);
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Describes the message api.v1.GetMilestoneRepositoriesResponse.
|
|
63
|
+
* Use `create(GetMilestoneRepositoriesResponseSchema)` to create a new message.
|
|
64
|
+
*/
|
|
65
|
+
export const GetMilestoneRepositoriesResponseSchema = /*@__PURE__*/
|
|
66
|
+
messageDesc(file_api_v1_milestone_repository, 6);
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* @generated from service api.v1.MilestoneRepositoryService
|
|
70
|
+
*/
|
|
71
|
+
export const MilestoneRepositoryService = /*@__PURE__*/
|
|
72
|
+
serviceDesc(file_api_v1_milestone_repository, 0);
|
|
73
|
+
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.3
|
|
2
|
+
// @generated from file api/v1/milestone_task.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 { MilestoneTask } from "./models_pb";
|
|
10
|
+
import type { EmptySchema } from "@bufbuild/protobuf/wkt";
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Describes the file api/v1/milestone_task.proto.
|
|
14
|
+
*/
|
|
15
|
+
export declare const file_api_v1_milestone_task: GenFile;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* @generated from message api.v1.AddMilestoneTaskRequest
|
|
19
|
+
*/
|
|
20
|
+
export declare type AddMilestoneTaskRequest = Message<"api.v1.AddMilestoneTaskRequest"> & {
|
|
21
|
+
/**
|
|
22
|
+
* @generated from field: uint32 milestone_id = 1;
|
|
23
|
+
*/
|
|
24
|
+
milestoneId: number;
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* @generated from field: uint32 task_id = 2;
|
|
28
|
+
*/
|
|
29
|
+
taskId: number;
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Describes the message api.v1.AddMilestoneTaskRequest.
|
|
34
|
+
* Use `create(AddMilestoneTaskRequestSchema)` to create a new message.
|
|
35
|
+
*/
|
|
36
|
+
export declare const AddMilestoneTaskRequestSchema: GenMessage<AddMilestoneTaskRequest>;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @generated from message api.v1.GetMilestoneTaskRequest
|
|
40
|
+
*/
|
|
41
|
+
export declare type GetMilestoneTaskRequest = Message<"api.v1.GetMilestoneTaskRequest"> & {
|
|
42
|
+
/**
|
|
43
|
+
* @generated from field: uint32 id = 1;
|
|
44
|
+
*/
|
|
45
|
+
id: number;
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Describes the message api.v1.GetMilestoneTaskRequest.
|
|
50
|
+
* Use `create(GetMilestoneTaskRequestSchema)` to create a new message.
|
|
51
|
+
*/
|
|
52
|
+
export declare const GetMilestoneTaskRequestSchema: GenMessage<GetMilestoneTaskRequest>;
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* @generated from message api.v1.GetMilestoneTasksRequest
|
|
56
|
+
*/
|
|
57
|
+
export declare type GetMilestoneTasksRequest = Message<"api.v1.GetMilestoneTasksRequest"> & {
|
|
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.GetMilestoneTasksRequest.
|
|
76
|
+
* Use `create(GetMilestoneTasksRequestSchema)` to create a new message.
|
|
77
|
+
*/
|
|
78
|
+
export declare const GetMilestoneTasksRequestSchema: GenMessage<GetMilestoneTasksRequest>;
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* @generated from message api.v1.DeleteMilestoneTaskRequest
|
|
82
|
+
*/
|
|
83
|
+
export declare type DeleteMilestoneTaskRequest = Message<"api.v1.DeleteMilestoneTaskRequest"> & {
|
|
84
|
+
/**
|
|
85
|
+
* @generated from field: uint32 id = 1;
|
|
86
|
+
*/
|
|
87
|
+
id: number;
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Describes the message api.v1.DeleteMilestoneTaskRequest.
|
|
92
|
+
* Use `create(DeleteMilestoneTaskRequestSchema)` to create a new message.
|
|
93
|
+
*/
|
|
94
|
+
export declare const DeleteMilestoneTaskRequestSchema: GenMessage<DeleteMilestoneTaskRequest>;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* @generated from message api.v1.AddMilestoneTaskResponse
|
|
98
|
+
*/
|
|
99
|
+
export declare type AddMilestoneTaskResponse = Message<"api.v1.AddMilestoneTaskResponse"> & {
|
|
100
|
+
/**
|
|
101
|
+
* @generated from field: api.v1.MilestoneTask milestone_task = 1;
|
|
102
|
+
*/
|
|
103
|
+
milestoneTask?: MilestoneTask;
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Describes the message api.v1.AddMilestoneTaskResponse.
|
|
108
|
+
* Use `create(AddMilestoneTaskResponseSchema)` to create a new message.
|
|
109
|
+
*/
|
|
110
|
+
export declare const AddMilestoneTaskResponseSchema: GenMessage<AddMilestoneTaskResponse>;
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* @generated from message api.v1.GetMilestoneTaskResponse
|
|
114
|
+
*/
|
|
115
|
+
export declare type GetMilestoneTaskResponse = Message<"api.v1.GetMilestoneTaskResponse"> & {
|
|
116
|
+
/**
|
|
117
|
+
* @generated from field: api.v1.MilestoneTask milestone_task = 1;
|
|
118
|
+
*/
|
|
119
|
+
milestoneTask?: MilestoneTask;
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* Describes the message api.v1.GetMilestoneTaskResponse.
|
|
124
|
+
* Use `create(GetMilestoneTaskResponseSchema)` to create a new message.
|
|
125
|
+
*/
|
|
126
|
+
export declare const GetMilestoneTaskResponseSchema: GenMessage<GetMilestoneTaskResponse>;
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* @generated from message api.v1.GetMilestoneTasksResponse
|
|
130
|
+
*/
|
|
131
|
+
export declare type GetMilestoneTasksResponse = Message<"api.v1.GetMilestoneTasksResponse"> & {
|
|
132
|
+
/**
|
|
133
|
+
* @generated from field: repeated api.v1.MilestoneTask milestone_tasks = 1;
|
|
134
|
+
*/
|
|
135
|
+
milestoneTasks: MilestoneTask[];
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* @generated from field: api.v1.Pagination pagination = 2;
|
|
139
|
+
*/
|
|
140
|
+
pagination?: Pagination;
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Describes the message api.v1.GetMilestoneTasksResponse.
|
|
145
|
+
* Use `create(GetMilestoneTasksResponseSchema)` to create a new message.
|
|
146
|
+
*/
|
|
147
|
+
export declare const GetMilestoneTasksResponseSchema: GenMessage<GetMilestoneTasksResponse>;
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* @generated from service api.v1.MilestoneTaskService
|
|
151
|
+
*/
|
|
152
|
+
export declare const MilestoneTaskService: GenService<{
|
|
153
|
+
/**
|
|
154
|
+
* @generated from rpc api.v1.MilestoneTaskService.AddMilestoneTask
|
|
155
|
+
*/
|
|
156
|
+
addMilestoneTask: {
|
|
157
|
+
methodKind: "unary";
|
|
158
|
+
input: typeof AddMilestoneTaskRequestSchema;
|
|
159
|
+
output: typeof AddMilestoneTaskResponseSchema;
|
|
160
|
+
},
|
|
161
|
+
/**
|
|
162
|
+
* @generated from rpc api.v1.MilestoneTaskService.GetMilestoneTask
|
|
163
|
+
*/
|
|
164
|
+
getMilestoneTask: {
|
|
165
|
+
methodKind: "unary";
|
|
166
|
+
input: typeof GetMilestoneTaskRequestSchema;
|
|
167
|
+
output: typeof GetMilestoneTaskResponseSchema;
|
|
168
|
+
},
|
|
169
|
+
/**
|
|
170
|
+
* @generated from rpc api.v1.MilestoneTaskService.GetMilestoneTasks
|
|
171
|
+
*/
|
|
172
|
+
getMilestoneTasks: {
|
|
173
|
+
methodKind: "unary";
|
|
174
|
+
input: typeof GetMilestoneTasksRequestSchema;
|
|
175
|
+
output: typeof GetMilestoneTasksResponseSchema;
|
|
176
|
+
},
|
|
177
|
+
/**
|
|
178
|
+
* @generated from rpc api.v1.MilestoneTaskService.DeleteMilestoneTask
|
|
179
|
+
*/
|
|
180
|
+
deleteMilestoneTask: {
|
|
181
|
+
methodKind: "unary";
|
|
182
|
+
input: typeof DeleteMilestoneTaskRequestSchema;
|
|
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_task.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_task.proto.
|
|
15
|
+
*/
|
|
16
|
+
export const file_api_v1_milestone_task = /*@__PURE__*/
|
|
17
|
+
fileDesc("ChthcGkvdjEvbWlsZXN0b25lX3Rhc2sucHJvdG8SBmFwaS52MSJSChdBZGRNaWxlc3RvbmVUYXNrUmVxdWVzdBIdCgxtaWxlc3RvbmVfaWQYASABKA1CB/pCBCoCKAESGAoHdGFza19pZBgCIAEoDUIH+kIEKgIoASIlChdHZXRNaWxlc3RvbmVUYXNrUmVxdWVzdBIKCgJpZBgBIAEoDSKaAQoYR2V0TWlsZXN0b25lVGFza3NSZXF1ZXN0Eh0KDG1pbGVzdG9uZV9pZBgBIAEoDUIH+kIEKgIoARIwCgpwYWdpbmF0aW9uGAIgASgLMhIuYXBpLnYxLlBhZ2luYXRpb25CCPpCBYoBAhABEi0KDmZpbHRlcl9vcHRpb25zGAMgASgLMhUuYXBpLnYxLkZpbHRlck9wdGlvbnMiKAoaRGVsZXRlTWlsZXN0b25lVGFza1JlcXVlc3QSCgoCaWQYASABKA0iSQoYQWRkTWlsZXN0b25lVGFza1Jlc3BvbnNlEi0KDm1pbGVzdG9uZV90YXNrGAEgASgLMhUuYXBpLnYxLk1pbGVzdG9uZVRhc2siSQoYR2V0TWlsZXN0b25lVGFza1Jlc3BvbnNlEi0KDm1pbGVzdG9uZV90YXNrGAEgASgLMhUuYXBpLnYxLk1pbGVzdG9uZVRhc2sicwoZR2V0TWlsZXN0b25lVGFza3NSZXNwb25zZRIuCg9taWxlc3RvbmVfdGFza3MYASADKAsyFS5hcGkudjEuTWlsZXN0b25lVGFzaxImCgpwYWdpbmF0aW9uGAIgASgLMhIuYXBpLnYxLlBhZ2luYXRpb24yggQKFE1pbGVzdG9uZVRhc2tTZXJ2aWNlEnkKEEFkZE1pbGVzdG9uZVRhc2sSHy5hcGkudjEuQWRkTWlsZXN0b25lVGFza1JlcXVlc3QaIC5hcGkudjEuQWRkTWlsZXN0b25lVGFza1Jlc3BvbnNlIiKC0+STAhw6ASoiFy9hcGkvdjEvbWlsZXN0b25lX3Rhc2tzEnsKEEdldE1pbGVzdG9uZVRhc2sSHy5hcGkudjEuR2V0TWlsZXN0b25lVGFza1JlcXVlc3QaIC5hcGkudjEuR2V0TWlsZXN0b25lVGFza1Jlc3BvbnNlIiSC0+STAh4SHC9hcGkvdjEvbWlsZXN0b25lX3Rhc2tzL3tpZH0SeQoRR2V0TWlsZXN0b25lVGFza3MSIC5hcGkudjEuR2V0TWlsZXN0b25lVGFza3NSZXF1ZXN0GiEuYXBpLnYxLkdldE1pbGVzdG9uZVRhc2tzUmVzcG9uc2UiH4LT5JMCGRIXL2FwaS92MS9taWxlc3RvbmVfdGFza3MSdwoTRGVsZXRlTWlsZXN0b25lVGFzaxIiLmFwaS52MS5EZWxldGVNaWxlc3RvbmVUYXNrUmVxdWVzdBoWLmdvb2dsZS5wcm90b2J1Zi5FbXB0eSIkgtPkkwIeKhwvYXBpL3YxL21pbGVzdG9uZV90YXNrcy97aWR9QncKCmNvbS5hcGkudjFCEk1pbGVzdG9uZVRhc2tQcm90b1ABWhxvcHNlZS9iYWNrZW5kL2dlbi9hcGkvdjE7Z2VuogIDQVhYqgIGQXBpLlYxygIGQXBpXFYx4gISQXBpXFYxXEdQQk1ldGFkYXRh6gIHQXBpOjpWMWIGcHJvdG8z", [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.AddMilestoneTaskRequest.
|
|
21
|
+
* Use `create(AddMilestoneTaskRequestSchema)` to create a new message.
|
|
22
|
+
*/
|
|
23
|
+
export const AddMilestoneTaskRequestSchema = /*@__PURE__*/
|
|
24
|
+
messageDesc(file_api_v1_milestone_task, 0);
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Describes the message api.v1.GetMilestoneTaskRequest.
|
|
28
|
+
* Use `create(GetMilestoneTaskRequestSchema)` to create a new message.
|
|
29
|
+
*/
|
|
30
|
+
export const GetMilestoneTaskRequestSchema = /*@__PURE__*/
|
|
31
|
+
messageDesc(file_api_v1_milestone_task, 1);
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Describes the message api.v1.GetMilestoneTasksRequest.
|
|
35
|
+
* Use `create(GetMilestoneTasksRequestSchema)` to create a new message.
|
|
36
|
+
*/
|
|
37
|
+
export const GetMilestoneTasksRequestSchema = /*@__PURE__*/
|
|
38
|
+
messageDesc(file_api_v1_milestone_task, 2);
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Describes the message api.v1.DeleteMilestoneTaskRequest.
|
|
42
|
+
* Use `create(DeleteMilestoneTaskRequestSchema)` to create a new message.
|
|
43
|
+
*/
|
|
44
|
+
export const DeleteMilestoneTaskRequestSchema = /*@__PURE__*/
|
|
45
|
+
messageDesc(file_api_v1_milestone_task, 3);
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Describes the message api.v1.AddMilestoneTaskResponse.
|
|
49
|
+
* Use `create(AddMilestoneTaskResponseSchema)` to create a new message.
|
|
50
|
+
*/
|
|
51
|
+
export const AddMilestoneTaskResponseSchema = /*@__PURE__*/
|
|
52
|
+
messageDesc(file_api_v1_milestone_task, 4);
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Describes the message api.v1.GetMilestoneTaskResponse.
|
|
56
|
+
* Use `create(GetMilestoneTaskResponseSchema)` to create a new message.
|
|
57
|
+
*/
|
|
58
|
+
export const GetMilestoneTaskResponseSchema = /*@__PURE__*/
|
|
59
|
+
messageDesc(file_api_v1_milestone_task, 5);
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Describes the message api.v1.GetMilestoneTasksResponse.
|
|
63
|
+
* Use `create(GetMilestoneTasksResponseSchema)` to create a new message.
|
|
64
|
+
*/
|
|
65
|
+
export const GetMilestoneTasksResponseSchema = /*@__PURE__*/
|
|
66
|
+
messageDesc(file_api_v1_milestone_task, 6);
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* @generated from service api.v1.MilestoneTaskService
|
|
70
|
+
*/
|
|
71
|
+
export const MilestoneTaskService = /*@__PURE__*/
|
|
72
|
+
serviceDesc(file_api_v1_milestone_task, 0);
|
|
73
|
+
|