fmea-api-mcp-server 1.1.63 → 1.1.65

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.
Files changed (40) hide show
  1. package/data/changelog/1.1.63.json +11 -0
  2. package/data/changelog/1.1.64.json +10 -0
  3. package/data/changelog/next.json +785 -18
  4. package/data/endpoint-lookup.json +1 -1
  5. package/data/enums.json +4 -3
  6. package/data/search-index.oxy +1 -1
  7. package/dist/index.js +1 -1
  8. package/dist/intents.js +1 -1
  9. package/dist/services/search/OramaSearchService.js +4 -1
  10. package/dist/synonyms.js +4 -2
  11. package/dist/utils/ScoreCalculator.js +7 -2
  12. package/endpoints/v2/action-status/core.json +59 -0
  13. package/endpoints/v2/classification-excel/core.json +1 -1
  14. package/endpoints/v2/classifications/core.json +110 -458
  15. package/endpoints/v2/condition-library-excel/core.json +220 -2
  16. package/endpoints/v2/division-excel/core.json +1 -1
  17. package/endpoints/v2/divisions/core.json +214 -238
  18. package/endpoints/v2/documents/core.json +203 -9
  19. package/endpoints/v2/evaluation/core.json +433 -663
  20. package/endpoints/v2/evaluation-excel/core.json +1 -1
  21. package/endpoints/v2/failure-mode-library/core.json +189 -0
  22. package/endpoints/v2/failure-mode-library-excel/core.json +289 -0
  23. package/endpoints/v2/fourm/core.json +3 -3
  24. package/endpoints/v2/high-items/core.json +1 -1
  25. package/endpoints/v2/notice-excel/core.json +1 -1
  26. package/endpoints/v2/notices/core.json +4 -4
  27. package/endpoints/v2/process-symbol-excel/core.json +63 -4
  28. package/endpoints/v2/process-symbols/core.json +2 -2
  29. package/endpoints/v2/projects/core.json +26 -2
  30. package/endpoints/v2/scoring/core.json +34 -137
  31. package/endpoints/v2/synonym-excel/core.json +101 -8
  32. package/endpoints/v2/synonyms/core.json +58 -176
  33. package/endpoints/v2/templates/core.json +1 -157
  34. package/endpoints/v2/user-excel/core.json +1 -1
  35. package/endpoints/v2/users/core.json +42 -0
  36. package/endpoints/v2/worksheet-template-excel/core.json +1 -1
  37. package/endpoints/v2/worksheets/core.json +2 -2
  38. package/endpoints/v2/worksheets/excel.json +1 -1
  39. package/package.json +1 -1
  40. package/endpoints/v2/fm-checkpoint/core.json +0 -363
@@ -73,7 +73,7 @@
73
73
  {
74
74
  "path": "/api/v2/condition-library-excel/export",
75
75
  "method": "GET",
76
- "operationId": "export_11",
76
+ "operationId": "export_12",
77
77
  "summary": "Export condition library to Excel",
78
78
  "description": "Exports condition library of specified type to an XLSX file.",
79
79
  "tags": [
@@ -83,7 +83,7 @@
83
83
  {
84
84
  "name": "type",
85
85
  "in": "query",
86
- "description": "Condition library type (stress/design/process)",
86
+ "description": "Condition library type",
87
87
  "required": true,
88
88
  "schema": {
89
89
  "type": "string"
@@ -103,6 +103,224 @@
103
103
  }
104
104
  }
105
105
  }
106
+ },
107
+ {
108
+ "path": "/api/v2/condition-library-excel/{type}/{uuid}/read",
109
+ "method": "POST",
110
+ "operationId": "readFlatPreview_1",
111
+ "summary": "Preview condition library nodes from Excel",
112
+ "description": "Parses an uploaded Excel file into condition library nodes and returns the flat preview list without writing to the database.",
113
+ "tags": [
114
+ "Condition Library Excel"
115
+ ],
116
+ "parameters": [
117
+ {
118
+ "name": "type",
119
+ "in": "path",
120
+ "description": "Condition library type",
121
+ "required": true,
122
+ "schema": {
123
+ "type": "string",
124
+ "enum": [
125
+ "STRESS",
126
+ "DESIGN",
127
+ "PROCESS"
128
+ ]
129
+ }
130
+ },
131
+ {
132
+ "name": "uuid",
133
+ "in": "path",
134
+ "description": "Upload UUID",
135
+ "required": true,
136
+ "schema": {
137
+ "type": "string"
138
+ }
139
+ }
140
+ ],
141
+ "requestBody": {
142
+ "content": {
143
+ "application/json": {
144
+ "schema": {
145
+ "type": "object",
146
+ "properties": {
147
+ "sheetIndex": {
148
+ "type": "integer",
149
+ "format": "int32"
150
+ },
151
+ "titleColumnIndex": {
152
+ "type": "integer",
153
+ "format": "int32"
154
+ },
155
+ "startRowNumber": {
156
+ "type": "integer",
157
+ "format": "int32"
158
+ }
159
+ }
160
+ }
161
+ }
162
+ }
163
+ },
164
+ "responses": {
165
+ "default": {
166
+ "description": "default response",
167
+ "content": {
168
+ "application/json": {
169
+ "schema": {
170
+ "type": "array",
171
+ "items": {
172
+ "type": "object",
173
+ "properties": {
174
+ "serial": {
175
+ "type": "integer"
176
+ },
177
+ "type": {
178
+ "type": "string",
179
+ "enum": [
180
+ "STRESS",
181
+ "DESIGN",
182
+ "PROCESS"
183
+ ]
184
+ },
185
+ "title": {
186
+ "type": "string"
187
+ },
188
+ "id": {
189
+ "type": "string"
190
+ },
191
+ "parentId": {
192
+ "type": "string"
193
+ },
194
+ "depth": {
195
+ "type": "integer"
196
+ },
197
+ "rank": {
198
+ "type": "integer"
199
+ },
200
+ "children": {
201
+ "type": "array",
202
+ "items": {
203
+ "type": "object",
204
+ "description": "(circular: ConditionLibraryTreeDTO)"
205
+ }
206
+ }
207
+ }
208
+ }
209
+ }
210
+ }
211
+ }
212
+ }
213
+ },
214
+ "x-dependency-warning": "REQUIRES PRIOR FILE UPLOAD via [POST /api/v2/files]. The {uuid} parameter is the file identifier returned by the upload endpoint."
215
+ },
216
+ {
217
+ "path": "/api/v2/condition-library-excel/{type}/{uuid}/read/tree",
218
+ "method": "POST",
219
+ "operationId": "readTreePreview_1",
220
+ "summary": "Preview condition library tree from Excel",
221
+ "description": "Parses an uploaded Excel file into condition library nodes and returns the tree preview list without writing to the database.",
222
+ "tags": [
223
+ "Condition Library Excel"
224
+ ],
225
+ "parameters": [
226
+ {
227
+ "name": "type",
228
+ "in": "path",
229
+ "description": "Condition library type",
230
+ "required": true,
231
+ "schema": {
232
+ "type": "string",
233
+ "enum": [
234
+ "STRESS",
235
+ "DESIGN",
236
+ "PROCESS"
237
+ ]
238
+ }
239
+ },
240
+ {
241
+ "name": "uuid",
242
+ "in": "path",
243
+ "description": "Upload UUID",
244
+ "required": true,
245
+ "schema": {
246
+ "type": "string"
247
+ }
248
+ }
249
+ ],
250
+ "requestBody": {
251
+ "content": {
252
+ "application/json": {
253
+ "schema": {
254
+ "type": "object",
255
+ "properties": {
256
+ "sheetIndex": {
257
+ "type": "integer",
258
+ "format": "int32"
259
+ },
260
+ "titleColumnIndex": {
261
+ "type": "integer",
262
+ "format": "int32"
263
+ },
264
+ "startRowNumber": {
265
+ "type": "integer",
266
+ "format": "int32"
267
+ }
268
+ }
269
+ }
270
+ }
271
+ }
272
+ },
273
+ "responses": {
274
+ "default": {
275
+ "description": "default response",
276
+ "content": {
277
+ "application/json": {
278
+ "schema": {
279
+ "type": "array",
280
+ "items": {
281
+ "type": "object",
282
+ "properties": {
283
+ "serial": {
284
+ "type": "integer"
285
+ },
286
+ "type": {
287
+ "type": "string",
288
+ "enum": [
289
+ "STRESS",
290
+ "DESIGN",
291
+ "PROCESS"
292
+ ]
293
+ },
294
+ "title": {
295
+ "type": "string"
296
+ },
297
+ "id": {
298
+ "type": "string"
299
+ },
300
+ "parentId": {
301
+ "type": "string"
302
+ },
303
+ "depth": {
304
+ "type": "integer"
305
+ },
306
+ "rank": {
307
+ "type": "integer"
308
+ },
309
+ "children": {
310
+ "type": "array",
311
+ "items": {
312
+ "type": "object",
313
+ "description": "(circular: ConditionLibraryTreeDTO)"
314
+ }
315
+ }
316
+ }
317
+ }
318
+ }
319
+ }
320
+ }
321
+ }
322
+ },
323
+ "x-dependency-warning": "REQUIRES PRIOR FILE UPLOAD via [POST /api/v2/files]. The {uuid} parameter is the file identifier returned by the upload endpoint."
106
324
  }
107
325
  ]
108
326
  }
@@ -8,7 +8,7 @@
8
8
  "method": "GET",
9
9
  "operationId": "export_4",
10
10
  "summary": "Export divisions to Excel",
11
- "description": "Exports divisions to an XLSX file and returns a download URI. Supports optional search filter. Requires admin permission.",
11
+ "description": "Exports division rows to an XLSX file and returns a download URI. This is a helper export surface separate from the main relation-tree snapshot read at GET /api/v2/divisions. Supports an optional helper search filter.",
12
12
  "tags": [
13
13
  "DivisionExcel"
14
14
  ],