fmea-api-mcp-server 1.1.35 → 1.1.37

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.
@@ -6,7 +6,7 @@
6
6
  {
7
7
  "path": "/api/v2/fm-checkpoint/{id}",
8
8
  "method": "DELETE",
9
- "operationId": "deleteItem_3",
9
+ "operationId": "deleteItem_2",
10
10
  "summary": "Delete FM checkpoint item",
11
11
  "description": "Deletes the specified FM checkpoint item and all its descendants recursively. Returns 400 if the item is ROOT or CATEGORY (system-fixed). Returns 404 if the ID does not exist.",
12
12
  "tags": [
@@ -36,7 +36,7 @@
36
36
  {
37
37
  "path": "/api/v2/fm-checkpoint/tree",
38
38
  "method": "GET",
39
- "operationId": "getTree_1",
39
+ "operationId": "getTree",
40
40
  "summary": "Get FM checkpoint tree",
41
41
  "description": "Returns the full tree structure of failure mode checkpoint items. Returned as a recursive children structure from ROOT down to ITEM leaf nodes. Used to display the checkpoint tree in the setup page.",
42
42
  "tags": [
@@ -87,7 +87,7 @@
87
87
  {
88
88
  "path": "/api/v2/fm-checkpoint/{id}",
89
89
  "method": "GET",
90
- "operationId": "getItem_1",
90
+ "operationId": "getItem",
91
91
  "summary": "Get FM checkpoint item",
92
92
  "description": "Returns the details of a single FM checkpoint item. Returns 404 if the ID does not exist.",
93
93
  "tags": [
@@ -147,7 +147,7 @@
147
147
  {
148
148
  "path": "/api/v2/fm-checkpoint/{id}/items",
149
149
  "method": "GET",
150
- "operationId": "getItems_1",
150
+ "operationId": "getItems",
151
151
  "summary": "List child FM checkpoint items",
152
152
  "description": "Returns the direct child FM checkpoint items of the specified parent. Returns 404 if the parent ID does not exist.",
153
153
  "tags": [
@@ -210,7 +210,7 @@
210
210
  {
211
211
  "path": "/api/v2/fm-checkpoint/{parentId}/items",
212
212
  "method": "POST",
213
- "operationId": "createItem_3",
213
+ "operationId": "createItem_2",
214
214
  "summary": "Create FM checkpoint item",
215
215
  "description": "Adds a new FM checkpoint item under the specified parent. The child type is automatically determined by the parent's type. Returns 400 if the parent is ROOT (CATEGORY is system-fixed) or ITEM (leaf node), or if the title is blank or duplicated.",
216
216
  "tags": [
@@ -286,7 +286,7 @@
286
286
  {
287
287
  "path": "/api/v2/fm-checkpoint/{id}",
288
288
  "method": "PUT",
289
- "operationId": "updateItem_3",
289
+ "operationId": "updateItem_2",
290
290
  "summary": "Update FM checkpoint item",
291
291
  "description": "Updates the title and description of the specified FM checkpoint item. Returns 400 if the item is ROOT or CATEGORY (system-fixed), or if the title is blank or duplicated under the same parent.",
292
292
  "tags": [
@@ -6,7 +6,7 @@
6
6
  {
7
7
  "path": "/api/v2/projects/{projectId}/high-items",
8
8
  "method": "PUT",
9
- "operationId": "update_5",
9
+ "operationId": "update_6",
10
10
  "summary": "Batch upsert and reorder high items by project",
11
11
  "description": "Updates the project high-item list with batch upsert semantics. Existing items are matched by sequence or title, ranks are recalculated by input order, and omitted items are removed.",
12
12
  "tags": [
@@ -0,0 +1,450 @@
1
+ {
2
+ "category": "Notices",
3
+ "version": "v2",
4
+ "description": "",
5
+ "endpoints": [
6
+ {
7
+ "path": "/api/v2/notices/{id}",
8
+ "method": "DELETE",
9
+ "operationId": "delete_3",
10
+ "summary": "Delete notice",
11
+ "description": "Deletes a notice by ID. Requires admin permission. Returns 404 if notice does not exist.",
12
+ "tags": [
13
+ "Notice"
14
+ ],
15
+ "parameters": [
16
+ {
17
+ "name": "id",
18
+ "in": "path",
19
+ "description": "Notice ID to delete",
20
+ "required": true,
21
+ "schema": {
22
+ "type": "integer",
23
+ "format": "int64"
24
+ }
25
+ }
26
+ ],
27
+ "requestBody": null,
28
+ "responses": {
29
+ "default": {
30
+ "description": "default response",
31
+ "content": {
32
+ "application/json": {}
33
+ }
34
+ }
35
+ }
36
+ },
37
+ {
38
+ "path": "/api/v2/notices",
39
+ "method": "GET",
40
+ "operationId": "list_8",
41
+ "summary": "List notices",
42
+ "description": "Returns a paged list of notices. Supports optional visibility filter. Use page=0 to retrieve all notices without paging.",
43
+ "tags": [
44
+ "Notice"
45
+ ],
46
+ "parameters": [
47
+ {
48
+ "name": "page",
49
+ "in": "query",
50
+ "description": "Page number (0 = all, default: 1)",
51
+ "schema": {
52
+ "type": "integer",
53
+ "default": 1,
54
+ "format": "int32"
55
+ }
56
+ },
57
+ {
58
+ "name": "size",
59
+ "in": "query",
60
+ "description": "Page size (default: 20)",
61
+ "schema": {
62
+ "type": "integer",
63
+ "default": 20,
64
+ "format": "int32"
65
+ }
66
+ },
67
+ {
68
+ "name": "visible",
69
+ "in": "query",
70
+ "description": "Filter by visibility (true/false, omit for all)",
71
+ "schema": {
72
+ "type": "boolean"
73
+ }
74
+ }
75
+ ],
76
+ "requestBody": null,
77
+ "responses": {
78
+ "default": {
79
+ "description": "default response",
80
+ "content": {
81
+ "application/json": {
82
+ "schema": {
83
+ "type": "object",
84
+ "properties": {
85
+ "items": {
86
+ "type": "array",
87
+ "items": {
88
+ "type": "object",
89
+ "properties": {
90
+ "id": {
91
+ "type": "integer",
92
+ "format": "int64"
93
+ },
94
+ "title": {
95
+ "type": "string"
96
+ },
97
+ "authorName": {
98
+ "type": "string"
99
+ },
100
+ "createdAt": {
101
+ "type": "string"
102
+ },
103
+ "viewCount": {
104
+ "type": "integer"
105
+ },
106
+ "visible": {
107
+ "type": "boolean"
108
+ }
109
+ }
110
+ }
111
+ },
112
+ "page": {
113
+ "type": "integer"
114
+ },
115
+ "size": {
116
+ "type": "integer"
117
+ },
118
+ "totalElements": {
119
+ "type": "integer",
120
+ "format": "int64"
121
+ },
122
+ "totalPages": {
123
+ "type": "integer"
124
+ }
125
+ }
126
+ }
127
+ }
128
+ }
129
+ }
130
+ }
131
+ },
132
+ {
133
+ "path": "/api/v2/notices/{id}",
134
+ "method": "GET",
135
+ "operationId": "getById",
136
+ "summary": "Get notice details",
137
+ "description": "Returns the full detail of a single notice by ID. Returns 404 if the notice does not exist.",
138
+ "tags": [
139
+ "Notice"
140
+ ],
141
+ "parameters": [
142
+ {
143
+ "name": "id",
144
+ "in": "path",
145
+ "description": "Notice ID",
146
+ "required": true,
147
+ "schema": {
148
+ "type": "integer",
149
+ "format": "int64"
150
+ }
151
+ }
152
+ ],
153
+ "requestBody": null,
154
+ "responses": {
155
+ "default": {
156
+ "description": "default response",
157
+ "content": {
158
+ "application/json": {
159
+ "schema": {
160
+ "type": "object",
161
+ "properties": {
162
+ "id": {
163
+ "type": "integer",
164
+ "format": "int64"
165
+ },
166
+ "title": {
167
+ "type": "string"
168
+ },
169
+ "content": {
170
+ "type": "string"
171
+ },
172
+ "authorName": {
173
+ "type": "string"
174
+ },
175
+ "createdBy": {
176
+ "type": "string"
177
+ },
178
+ "createdAt": {
179
+ "type": "string"
180
+ },
181
+ "viewCount": {
182
+ "type": "integer"
183
+ },
184
+ "visible": {
185
+ "type": "boolean"
186
+ },
187
+ "fileUrl": {
188
+ "type": "string"
189
+ }
190
+ }
191
+ }
192
+ }
193
+ }
194
+ }
195
+ }
196
+ },
197
+ {
198
+ "path": "/api/v2/notices/visibility",
199
+ "method": "PATCH",
200
+ "operationId": "updateBulkVisibility",
201
+ "summary": "Bulk update notice visibility",
202
+ "description": "Updates the visibility of multiple notices at once. Each item specifies an ID and the desired visibility. Returns 404 if any notice ID does not exist.",
203
+ "tags": [
204
+ "Notice"
205
+ ],
206
+ "parameters": [],
207
+ "requestBody": {
208
+ "content": {
209
+ "application/json": {
210
+ "schema": {
211
+ "type": "object",
212
+ "properties": {
213
+ "items": {
214
+ "type": "array",
215
+ "items": {
216
+ "type": "object",
217
+ "properties": {
218
+ "id": {
219
+ "type": "integer",
220
+ "format": "int64"
221
+ },
222
+ "visible": {
223
+ "type": "boolean"
224
+ }
225
+ }
226
+ }
227
+ }
228
+ }
229
+ }
230
+ }
231
+ }
232
+ },
233
+ "responses": {
234
+ "default": {
235
+ "description": "default response",
236
+ "content": {
237
+ "application/json": {}
238
+ }
239
+ }
240
+ }
241
+ },
242
+ {
243
+ "path": "/api/v2/notices/{id}/visibility",
244
+ "method": "PATCH",
245
+ "operationId": "updateVisibility",
246
+ "summary": "Update notice visibility",
247
+ "description": "Updates the visibility of a single notice. Returns 404 if the notice does not exist.",
248
+ "tags": [
249
+ "Notice"
250
+ ],
251
+ "parameters": [
252
+ {
253
+ "name": "id",
254
+ "in": "path",
255
+ "description": "Notice ID",
256
+ "required": true,
257
+ "schema": {
258
+ "type": "integer",
259
+ "format": "int64"
260
+ }
261
+ }
262
+ ],
263
+ "requestBody": {
264
+ "content": {
265
+ "application/json": {
266
+ "schema": {
267
+ "type": "object",
268
+ "properties": {
269
+ "visible": {
270
+ "type": "boolean"
271
+ }
272
+ }
273
+ }
274
+ }
275
+ }
276
+ },
277
+ "responses": {
278
+ "default": {
279
+ "description": "default response",
280
+ "content": {
281
+ "application/json": {}
282
+ }
283
+ }
284
+ }
285
+ },
286
+ {
287
+ "path": "/api/v2/notices",
288
+ "method": "POST",
289
+ "operationId": "create_4",
290
+ "summary": "Create notice",
291
+ "description": "Creates a new notice. Requires admin permission. Title and content are required fields.",
292
+ "tags": [
293
+ "Notice"
294
+ ],
295
+ "parameters": [],
296
+ "requestBody": {
297
+ "content": {
298
+ "application/json": {
299
+ "schema": {
300
+ "type": "object",
301
+ "properties": {
302
+ "title": {
303
+ "type": "string"
304
+ },
305
+ "content": {
306
+ "type": "string"
307
+ },
308
+ "visible": {
309
+ "type": "boolean"
310
+ },
311
+ "fileUrl": {
312
+ "type": "string"
313
+ }
314
+ }
315
+ }
316
+ }
317
+ }
318
+ },
319
+ "responses": {
320
+ "default": {
321
+ "description": "default response",
322
+ "content": {
323
+ "application/json": {
324
+ "schema": {
325
+ "type": "object",
326
+ "properties": {
327
+ "id": {
328
+ "type": "integer",
329
+ "format": "int64"
330
+ },
331
+ "title": {
332
+ "type": "string"
333
+ },
334
+ "content": {
335
+ "type": "string"
336
+ },
337
+ "authorName": {
338
+ "type": "string"
339
+ },
340
+ "createdBy": {
341
+ "type": "string"
342
+ },
343
+ "createdAt": {
344
+ "type": "string"
345
+ },
346
+ "viewCount": {
347
+ "type": "integer"
348
+ },
349
+ "visible": {
350
+ "type": "boolean"
351
+ },
352
+ "fileUrl": {
353
+ "type": "string"
354
+ }
355
+ }
356
+ }
357
+ }
358
+ }
359
+ }
360
+ }
361
+ },
362
+ {
363
+ "path": "/api/v2/notices/{id}",
364
+ "method": "PUT",
365
+ "operationId": "update_3",
366
+ "summary": "Update notice",
367
+ "description": "Updates an existing notice by ID. Requires admin permission. Returns 404 if notice does not exist.",
368
+ "tags": [
369
+ "Notice"
370
+ ],
371
+ "parameters": [
372
+ {
373
+ "name": "id",
374
+ "in": "path",
375
+ "description": "Notice ID to update",
376
+ "required": true,
377
+ "schema": {
378
+ "type": "integer",
379
+ "format": "int64"
380
+ }
381
+ }
382
+ ],
383
+ "requestBody": {
384
+ "content": {
385
+ "application/json": {
386
+ "schema": {
387
+ "type": "object",
388
+ "properties": {
389
+ "title": {
390
+ "type": "string"
391
+ },
392
+ "content": {
393
+ "type": "string"
394
+ },
395
+ "visible": {
396
+ "type": "boolean"
397
+ },
398
+ "fileUrl": {
399
+ "type": "string"
400
+ }
401
+ }
402
+ }
403
+ }
404
+ }
405
+ },
406
+ "responses": {
407
+ "default": {
408
+ "description": "default response",
409
+ "content": {
410
+ "application/json": {
411
+ "schema": {
412
+ "type": "object",
413
+ "properties": {
414
+ "id": {
415
+ "type": "integer",
416
+ "format": "int64"
417
+ },
418
+ "title": {
419
+ "type": "string"
420
+ },
421
+ "content": {
422
+ "type": "string"
423
+ },
424
+ "authorName": {
425
+ "type": "string"
426
+ },
427
+ "createdBy": {
428
+ "type": "string"
429
+ },
430
+ "createdAt": {
431
+ "type": "string"
432
+ },
433
+ "viewCount": {
434
+ "type": "integer"
435
+ },
436
+ "visible": {
437
+ "type": "boolean"
438
+ },
439
+ "fileUrl": {
440
+ "type": "string"
441
+ }
442
+ }
443
+ }
444
+ }
445
+ }
446
+ }
447
+ }
448
+ }
449
+ ]
450
+ }
@@ -6,7 +6,7 @@
6
6
  {
7
7
  "path": "/api/v2/projects",
8
8
  "method": "GET",
9
- "operationId": "list_8",
9
+ "operationId": "list_9",
10
10
  "summary": "List project summaries",
11
11
  "description": "Returns paged project summaries. scope: 'my' (default, user's projects), 'all' (admin, all active), 'deleted' (admin, trashed). Supports divisionId, search, fmeaType, status, sort, pagination.",
12
12
  "tags": [
@@ -1053,7 +1053,7 @@
1053
1053
  {
1054
1054
  "path": "/api/v2/projects/{projectId}/high-items",
1055
1055
  "method": "GET",
1056
- "operationId": "list_12",
1056
+ "operationId": "list_13",
1057
1057
  "summary": "List high items by project",
1058
1058
  "description": "Returns high items in the target project ordered by rank. Supports optional keyword search on high-item titles and is used by system-definition screens.",
1059
1059
  "tags": [