fmea-api-mcp-server 1.0.3 → 1.0.5
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/README.md +14 -3
- package/dist/index.js +76 -5
- package/endpoints/README.md +40 -0
- package/endpoints/v1/projects/core.json +156 -0
- package/endpoints/v1/projects/data.json +64 -0
- package/endpoints/v1/projects/lifecycle.json +85 -0
- package/endpoints/v1/projects/recommendations.json +58 -0
- package/endpoints/v2/worksheets/excel.json +161 -0
- package/endpoints/v2/{worksheets.json → worksheets/management.json} +2 -183
- package/endpoints/v2/worksheets/templates.json +34 -0
- package/package.json +1 -1
- package/endpoints/v1/projects.json +0 -342
- /package/endpoints/v1/{authentication.json → authentication/core.json} +0 -0
- /package/endpoints/v1/{block-diagrams.json → block-diagrams/core.json} +0 -0
- /package/endpoints/v1/{divisions.json → divisions/core.json} +0 -0
- /package/endpoints/v1/{failure-modes.json → failure-modes/core.json} +0 -0
- /package/endpoints/v1/{files.json → files/core.json} +0 -0
- /package/endpoints/v1/{fta.json → fta/core.json} +0 -0
- /package/endpoints/v1/{knowledge-base.json → knowledge-base/core.json} +0 -0
- /package/endpoints/v1/{synonyms.json → synonyms/core.json} +0 -0
- /package/endpoints/v1/{terms.json → terms/core.json} +0 -0
- /package/endpoints/v1/{users.json → users/core.json} +0 -0
- /package/endpoints/v1/{worksheets.json → worksheets/core.json} +0 -0
- /package/endpoints/v2/{api-keys.json → api-keys/core.json} +0 -0
- /package/endpoints/v2/{block-diagrams.json → block-diagrams/core.json} +0 -0
- /package/endpoints/v2/{divisions.json → divisions/core.json} +0 -0
- /package/endpoints/v2/{documents.json → documents/core.json} +0 -0
- /package/endpoints/v2/{failure-modes.json → failure-modes/core.json} +0 -0
- /package/endpoints/v2/{files.json → files/core.json} +0 -0
- /package/endpoints/v2/{fourm.json → fourm/core.json} +0 -0
- /package/endpoints/v2/{projects.json → projects/core.json} +0 -0
- /package/endpoints/v2/{system.json → system/core.json} +0 -0
- /package/endpoints/v2/{templates.json → templates/core.json} +0 -0
- /package/endpoints/v2/{users.json → users/core.json} +0 -0
|
@@ -1,342 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"category": "Project Management",
|
|
3
|
-
"version": "v1",
|
|
4
|
-
"description": "프로젝트 관리 관련 API",
|
|
5
|
-
"endpoints": [
|
|
6
|
-
{
|
|
7
|
-
"path": "/api/v1/projects",
|
|
8
|
-
"method": "POST",
|
|
9
|
-
"operationId": "save_5",
|
|
10
|
-
"summary": "Create project",
|
|
11
|
-
"description": "Create a new project",
|
|
12
|
-
"tags": [],
|
|
13
|
-
"parameters": [],
|
|
14
|
-
"requestBody": {
|
|
15
|
-
"content": {
|
|
16
|
-
"application/json": {
|
|
17
|
-
"schema": {
|
|
18
|
-
"$ref": "#/components/schemas/ProjectCreationDTO"
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"responses": {
|
|
24
|
-
"default": {
|
|
25
|
-
"description": "default response",
|
|
26
|
-
"content": {
|
|
27
|
-
"application/json": {}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"path": "/api/v1/projects/my",
|
|
34
|
-
"method": "GET",
|
|
35
|
-
"operationId": "findAllByUserId",
|
|
36
|
-
"summary": "Get user projects",
|
|
37
|
-
"description": "Get all projects for the current user",
|
|
38
|
-
"tags": [],
|
|
39
|
-
"parameters": [
|
|
40
|
-
{
|
|
41
|
-
"name": "size",
|
|
42
|
-
"in": "query",
|
|
43
|
-
"schema": {
|
|
44
|
-
"type": "integer",
|
|
45
|
-
"format": "int32",
|
|
46
|
-
"default": 20
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"name": "page",
|
|
51
|
-
"in": "query",
|
|
52
|
-
"schema": {
|
|
53
|
-
"type": "integer",
|
|
54
|
-
"format": "int32",
|
|
55
|
-
"default": 1
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
],
|
|
59
|
-
"responses": {
|
|
60
|
-
"default": {
|
|
61
|
-
"description": "default response",
|
|
62
|
-
"content": {
|
|
63
|
-
"application/json": {}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"path": "/api/v1/projects/recommendations",
|
|
70
|
-
"method": "GET",
|
|
71
|
-
"operationId": "getProjects",
|
|
72
|
-
"summary": "Get project recommendations",
|
|
73
|
-
"description": "Get recommended projects",
|
|
74
|
-
"tags": [],
|
|
75
|
-
"parameters": [],
|
|
76
|
-
"responses": {
|
|
77
|
-
"default": {
|
|
78
|
-
"description": "default response",
|
|
79
|
-
"content": {
|
|
80
|
-
"application/json": {}
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"path": "/api/v1/projects/{id}",
|
|
87
|
-
"method": "GET",
|
|
88
|
-
"operationId": "findById_4",
|
|
89
|
-
"summary": "Get project by ID",
|
|
90
|
-
"description": "Get a project by its ID",
|
|
91
|
-
"tags": [],
|
|
92
|
-
"parameters": [
|
|
93
|
-
{
|
|
94
|
-
"name": "id",
|
|
95
|
-
"in": "path",
|
|
96
|
-
"required": true,
|
|
97
|
-
"schema": {
|
|
98
|
-
"type": "string"
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
],
|
|
102
|
-
"responses": {
|
|
103
|
-
"default": {
|
|
104
|
-
"description": "default response",
|
|
105
|
-
"content": {
|
|
106
|
-
"application/json": {}
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"path": "/api/v1/projects/{id}",
|
|
113
|
-
"method": "PUT",
|
|
114
|
-
"operationId": "update",
|
|
115
|
-
"summary": "Update project",
|
|
116
|
-
"description": "Update an existing project",
|
|
117
|
-
"tags": [],
|
|
118
|
-
"parameters": [
|
|
119
|
-
{
|
|
120
|
-
"name": "id",
|
|
121
|
-
"in": "path",
|
|
122
|
-
"required": true,
|
|
123
|
-
"schema": {
|
|
124
|
-
"type": "string"
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
],
|
|
128
|
-
"requestBody": {
|
|
129
|
-
"content": {
|
|
130
|
-
"application/json": {
|
|
131
|
-
"schema": {
|
|
132
|
-
"$ref": "#/components/schemas/ProjectUpdateDTO"
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
},
|
|
137
|
-
"responses": {
|
|
138
|
-
"default": {
|
|
139
|
-
"description": "default response",
|
|
140
|
-
"content": {
|
|
141
|
-
"application/json": {}
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
"path": "/api/v1/projects/{id}",
|
|
148
|
-
"method": "DELETE",
|
|
149
|
-
"operationId": "delete",
|
|
150
|
-
"summary": "Delete project",
|
|
151
|
-
"description": "Delete a project by its ID",
|
|
152
|
-
"tags": [],
|
|
153
|
-
"parameters": [
|
|
154
|
-
{
|
|
155
|
-
"name": "id",
|
|
156
|
-
"in": "path",
|
|
157
|
-
"required": true,
|
|
158
|
-
"schema": {
|
|
159
|
-
"type": "string"
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
],
|
|
163
|
-
"responses": {
|
|
164
|
-
"default": {
|
|
165
|
-
"description": "default response",
|
|
166
|
-
"content": {
|
|
167
|
-
"application/json": {}
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"path": "/api/v1/projects/{id}/activate",
|
|
174
|
-
"method": "PUT",
|
|
175
|
-
"operationId": "activateProject",
|
|
176
|
-
"summary": "Activate project",
|
|
177
|
-
"description": "Activate a project",
|
|
178
|
-
"tags": [],
|
|
179
|
-
"parameters": [
|
|
180
|
-
{
|
|
181
|
-
"name": "id",
|
|
182
|
-
"in": "path",
|
|
183
|
-
"required": true,
|
|
184
|
-
"schema": {
|
|
185
|
-
"type": "string"
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
],
|
|
189
|
-
"responses": {
|
|
190
|
-
"default": {
|
|
191
|
-
"description": "default response",
|
|
192
|
-
"content": {
|
|
193
|
-
"application/json": {}
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
"path": "/api/v1/projects/{id}/deactivate",
|
|
200
|
-
"method": "PUT",
|
|
201
|
-
"operationId": "deactivateProject",
|
|
202
|
-
"summary": "Deactivate project",
|
|
203
|
-
"description": "Deactivate a project",
|
|
204
|
-
"tags": [],
|
|
205
|
-
"parameters": [
|
|
206
|
-
{
|
|
207
|
-
"name": "id",
|
|
208
|
-
"in": "path",
|
|
209
|
-
"required": true,
|
|
210
|
-
"schema": {
|
|
211
|
-
"type": "string"
|
|
212
|
-
}
|
|
213
|
-
}
|
|
214
|
-
],
|
|
215
|
-
"responses": {
|
|
216
|
-
"default": {
|
|
217
|
-
"description": "default response",
|
|
218
|
-
"content": {
|
|
219
|
-
"application/json": {}
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
},
|
|
224
|
-
{
|
|
225
|
-
"path": "/api/v1/projects/{id}/copy",
|
|
226
|
-
"method": "POST",
|
|
227
|
-
"operationId": "copy",
|
|
228
|
-
"summary": "Copy project",
|
|
229
|
-
"description": "Copy a project",
|
|
230
|
-
"tags": [],
|
|
231
|
-
"parameters": [
|
|
232
|
-
{
|
|
233
|
-
"name": "id",
|
|
234
|
-
"in": "path",
|
|
235
|
-
"required": true,
|
|
236
|
-
"schema": {
|
|
237
|
-
"type": "string"
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
],
|
|
241
|
-
"responses": {
|
|
242
|
-
"default": {
|
|
243
|
-
"description": "default response",
|
|
244
|
-
"content": {
|
|
245
|
-
"application/json": {}
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
"path": "/api/v1/projects/{id}/export",
|
|
252
|
-
"method": "GET",
|
|
253
|
-
"operationId": "exportData",
|
|
254
|
-
"summary": "Export project data",
|
|
255
|
-
"description": "Export project data",
|
|
256
|
-
"tags": [],
|
|
257
|
-
"parameters": [
|
|
258
|
-
{
|
|
259
|
-
"name": "id",
|
|
260
|
-
"in": "path",
|
|
261
|
-
"required": true,
|
|
262
|
-
"schema": {
|
|
263
|
-
"type": "string"
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
],
|
|
267
|
-
"responses": {
|
|
268
|
-
"default": {
|
|
269
|
-
"description": "default response",
|
|
270
|
-
"content": {
|
|
271
|
-
"application/json": {}
|
|
272
|
-
}
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
},
|
|
276
|
-
{
|
|
277
|
-
"path": "/api/v1/projects/{id}/recommendations",
|
|
278
|
-
"method": "GET",
|
|
279
|
-
"operationId": "getRecommendationsByProjectId",
|
|
280
|
-
"summary": "Get project recommendations by ID",
|
|
281
|
-
"description": "Get recommendations for a specific project",
|
|
282
|
-
"tags": [],
|
|
283
|
-
"parameters": [
|
|
284
|
-
{
|
|
285
|
-
"name": "id",
|
|
286
|
-
"in": "path",
|
|
287
|
-
"required": true,
|
|
288
|
-
"schema": {
|
|
289
|
-
"type": "string"
|
|
290
|
-
}
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"name": "status",
|
|
294
|
-
"in": "query",
|
|
295
|
-
"schema": {
|
|
296
|
-
"pattern": "NotCompleted|In-Progress|Delay|Completed|All",
|
|
297
|
-
"type": "string"
|
|
298
|
-
}
|
|
299
|
-
}
|
|
300
|
-
],
|
|
301
|
-
"responses": {
|
|
302
|
-
"default": {
|
|
303
|
-
"description": "default response",
|
|
304
|
-
"content": {
|
|
305
|
-
"application/json": {}
|
|
306
|
-
}
|
|
307
|
-
}
|
|
308
|
-
}
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
"path": "/api/v1/projects/import",
|
|
312
|
-
"method": "POST",
|
|
313
|
-
"operationId": "importData",
|
|
314
|
-
"summary": "Import project data",
|
|
315
|
-
"description": "Import project data from a file",
|
|
316
|
-
"tags": [],
|
|
317
|
-
"parameters": [],
|
|
318
|
-
"requestBody": {
|
|
319
|
-
"content": {
|
|
320
|
-
"multipart/form-data": {
|
|
321
|
-
"schema": {
|
|
322
|
-
"type": "object",
|
|
323
|
-
"properties": {
|
|
324
|
-
"file": {
|
|
325
|
-
"$ref": "#/components/schemas/FormDataContentDisposition"
|
|
326
|
-
}
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
}
|
|
331
|
-
},
|
|
332
|
-
"responses": {
|
|
333
|
-
"default": {
|
|
334
|
-
"description": "default response",
|
|
335
|
-
"content": {
|
|
336
|
-
"application/json": {}
|
|
337
|
-
}
|
|
338
|
-
}
|
|
339
|
-
}
|
|
340
|
-
}
|
|
341
|
-
]
|
|
342
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|