fmea-api-mcp-server 1.1.37 → 1.1.39
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/data/endpoint-lookup.json +1 -1
- package/data/search-index.oxy +1 -1
- package/dist/index.js +1 -1
- package/dist/services/search/OramaSearchService.js +4 -0
- package/dist/synonyms.js +7 -2
- package/endpoints/v2/block-diagrams/core.json +42 -62
- package/endpoints/v2/condition-library/core.json +18 -0
- package/endpoints/v2/divisions/core.json +367 -1
- package/endpoints/v2/documents/core.json +3 -3
- package/endpoints/v2/failure-modes/core.json +19 -9
- package/endpoints/v2/fourm/core.json +4 -4
- package/endpoints/v2/high-items/core.json +1 -1
- package/endpoints/v2/notices/core.json +4 -4
- package/endpoints/v2/projects/core.json +51 -5
- package/endpoints/v2/recommendation-items/core.json +9 -0
- package/endpoints/v2/search/core.json +31 -4
- package/endpoints/v2/synonym-excel/core.json +123 -0
- package/endpoints/v2/synonyms/core.json +409 -0
- package/endpoints/v2/system/core.json +677 -0
- package/endpoints/v2/system-definition/core.json +9 -0
- package/endpoints/v2/templates/core.json +3 -3
- package/endpoints/v2/users/core.json +11 -2
- package/endpoints/v2/worksheet-templates/core.json +11 -2
- package/endpoints/v2/worksheets/core.json +3 -3
- package/endpoints/v2/worksheets/excel.json +1 -1
- package/endpoints/v2/worksheets/management.json +9 -0
- package/endpoints/v2/worksheets/templates.json +9 -0
- package/package.json +1 -1
|
@@ -0,0 +1,409 @@
|
|
|
1
|
+
{
|
|
2
|
+
"category": "Synonyms",
|
|
3
|
+
"version": "v2",
|
|
4
|
+
"description": "",
|
|
5
|
+
"endpoints": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/api/v2/synonyms",
|
|
8
|
+
"method": "DELETE",
|
|
9
|
+
"operationId": "deleteBatch",
|
|
10
|
+
"summary": "Delete synonym groups",
|
|
11
|
+
"description": "Deletes multiple synonym groups using the provided ID list and returns no content.",
|
|
12
|
+
"tags": [
|
|
13
|
+
"Synonym"
|
|
14
|
+
],
|
|
15
|
+
"parameters": [],
|
|
16
|
+
"requestBody": {
|
|
17
|
+
"content": {
|
|
18
|
+
"application/json": {
|
|
19
|
+
"schema": {
|
|
20
|
+
"type": "object",
|
|
21
|
+
"properties": {
|
|
22
|
+
"ids": {
|
|
23
|
+
"type": "array",
|
|
24
|
+
"items": {
|
|
25
|
+
"type": "integer",
|
|
26
|
+
"format": "int32"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"responses": {
|
|
35
|
+
"default": {
|
|
36
|
+
"description": "default response",
|
|
37
|
+
"content": {
|
|
38
|
+
"application/json": {}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"path": "/api/v2/synonyms/{groupId}",
|
|
45
|
+
"method": "DELETE",
|
|
46
|
+
"operationId": "delete_5",
|
|
47
|
+
"summary": "Delete synonym group",
|
|
48
|
+
"description": "Deletes a single synonym group by group ID. Returns 404 if the group does not exist.",
|
|
49
|
+
"tags": [
|
|
50
|
+
"Synonym"
|
|
51
|
+
],
|
|
52
|
+
"parameters": [
|
|
53
|
+
{
|
|
54
|
+
"name": "groupId",
|
|
55
|
+
"in": "path",
|
|
56
|
+
"description": "Synonym group ID to delete",
|
|
57
|
+
"required": true,
|
|
58
|
+
"schema": {
|
|
59
|
+
"type": "integer",
|
|
60
|
+
"format": "int32"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"requestBody": null,
|
|
65
|
+
"responses": {
|
|
66
|
+
"default": {
|
|
67
|
+
"description": "default response",
|
|
68
|
+
"content": {
|
|
69
|
+
"application/json": {}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"path": "/api/v2/synonyms",
|
|
76
|
+
"method": "GET",
|
|
77
|
+
"operationId": "list_11",
|
|
78
|
+
"summary": "List synonym groups",
|
|
79
|
+
"description": "Returns synonym groups with optional keyword filtering and paging. Use page=0 to retrieve all groups without paging.",
|
|
80
|
+
"tags": [
|
|
81
|
+
"Synonym"
|
|
82
|
+
],
|
|
83
|
+
"parameters": [
|
|
84
|
+
{
|
|
85
|
+
"name": "q",
|
|
86
|
+
"in": "query",
|
|
87
|
+
"description": "Synonym keyword filter",
|
|
88
|
+
"schema": {
|
|
89
|
+
"type": "string"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "useSynonym",
|
|
94
|
+
"in": "query",
|
|
95
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
96
|
+
"schema": {
|
|
97
|
+
"type": "boolean",
|
|
98
|
+
"default": true
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "page",
|
|
103
|
+
"in": "query",
|
|
104
|
+
"description": "Page number (0 = all, default: 1)",
|
|
105
|
+
"schema": {
|
|
106
|
+
"type": "integer",
|
|
107
|
+
"default": 1,
|
|
108
|
+
"format": "int32"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "size",
|
|
113
|
+
"in": "query",
|
|
114
|
+
"description": "Page size (default: 50)",
|
|
115
|
+
"schema": {
|
|
116
|
+
"type": "integer",
|
|
117
|
+
"default": 50,
|
|
118
|
+
"format": "int32"
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"requestBody": null,
|
|
123
|
+
"responses": {
|
|
124
|
+
"default": {
|
|
125
|
+
"description": "default response",
|
|
126
|
+
"content": {
|
|
127
|
+
"application/json": {
|
|
128
|
+
"schema": {
|
|
129
|
+
"type": "object",
|
|
130
|
+
"properties": {
|
|
131
|
+
"items": {
|
|
132
|
+
"type": "array",
|
|
133
|
+
"items": {
|
|
134
|
+
"type": "object",
|
|
135
|
+
"properties": {
|
|
136
|
+
"id": {
|
|
137
|
+
"type": "integer"
|
|
138
|
+
},
|
|
139
|
+
"terms": {
|
|
140
|
+
"type": "array",
|
|
141
|
+
"items": {
|
|
142
|
+
"type": "string"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"termCount": {
|
|
146
|
+
"type": "integer"
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"page": {
|
|
152
|
+
"type": "integer"
|
|
153
|
+
},
|
|
154
|
+
"size": {
|
|
155
|
+
"type": "integer"
|
|
156
|
+
},
|
|
157
|
+
"totalElements": {
|
|
158
|
+
"type": "integer",
|
|
159
|
+
"format": "int64"
|
|
160
|
+
},
|
|
161
|
+
"totalPages": {
|
|
162
|
+
"type": "integer"
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"path": "/api/v2/synonyms/expand",
|
|
173
|
+
"method": "GET",
|
|
174
|
+
"operationId": "expand",
|
|
175
|
+
"summary": "Expand synonym terms",
|
|
176
|
+
"description": "Returns expanded synonym terms matching the provided keyword using partial keyword search across synonym groups.",
|
|
177
|
+
"tags": [
|
|
178
|
+
"Synonym"
|
|
179
|
+
],
|
|
180
|
+
"parameters": [
|
|
181
|
+
{
|
|
182
|
+
"name": "keyword",
|
|
183
|
+
"in": "query",
|
|
184
|
+
"description": "Keyword to expand into matching synonym terms",
|
|
185
|
+
"required": true,
|
|
186
|
+
"schema": {
|
|
187
|
+
"type": "string"
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
"requestBody": null,
|
|
192
|
+
"responses": {
|
|
193
|
+
"default": {
|
|
194
|
+
"description": "default response",
|
|
195
|
+
"content": {
|
|
196
|
+
"application/json": {
|
|
197
|
+
"schema": {
|
|
198
|
+
"type": "array",
|
|
199
|
+
"items": {
|
|
200
|
+
"type": "string"
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"path": "/api/v2/synonyms/metadata",
|
|
210
|
+
"method": "GET",
|
|
211
|
+
"operationId": "metadata",
|
|
212
|
+
"summary": "Get synonym metadata",
|
|
213
|
+
"description": "Returns synonym dictionary metadata including maximum term count per group and total group count.",
|
|
214
|
+
"tags": [
|
|
215
|
+
"Synonym"
|
|
216
|
+
],
|
|
217
|
+
"parameters": [],
|
|
218
|
+
"requestBody": null,
|
|
219
|
+
"responses": {
|
|
220
|
+
"default": {
|
|
221
|
+
"description": "default response",
|
|
222
|
+
"content": {
|
|
223
|
+
"application/json": {
|
|
224
|
+
"schema": {
|
|
225
|
+
"type": "object",
|
|
226
|
+
"properties": {
|
|
227
|
+
"maxTermCount": {
|
|
228
|
+
"type": "integer"
|
|
229
|
+
},
|
|
230
|
+
"groupCount": {
|
|
231
|
+
"type": "integer"
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"path": "/api/v2/synonyms/{groupId}",
|
|
242
|
+
"method": "GET",
|
|
243
|
+
"operationId": "get_4",
|
|
244
|
+
"summary": "Get synonym group",
|
|
245
|
+
"description": "Returns a single synonym group with its ordered term list. Returns 404 if the group does not exist.",
|
|
246
|
+
"tags": [
|
|
247
|
+
"Synonym"
|
|
248
|
+
],
|
|
249
|
+
"parameters": [
|
|
250
|
+
{
|
|
251
|
+
"name": "groupId",
|
|
252
|
+
"in": "path",
|
|
253
|
+
"description": "Synonym group ID to retrieve",
|
|
254
|
+
"required": true,
|
|
255
|
+
"schema": {
|
|
256
|
+
"type": "integer",
|
|
257
|
+
"format": "int32"
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
],
|
|
261
|
+
"requestBody": null,
|
|
262
|
+
"responses": {
|
|
263
|
+
"default": {
|
|
264
|
+
"description": "default response",
|
|
265
|
+
"content": {
|
|
266
|
+
"application/json": {
|
|
267
|
+
"schema": {
|
|
268
|
+
"type": "object",
|
|
269
|
+
"properties": {
|
|
270
|
+
"id": {
|
|
271
|
+
"type": "integer"
|
|
272
|
+
},
|
|
273
|
+
"terms": {
|
|
274
|
+
"type": "array",
|
|
275
|
+
"items": {
|
|
276
|
+
"type": "string"
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
"termCount": {
|
|
280
|
+
"type": "integer"
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"path": "/api/v2/synonyms",
|
|
291
|
+
"method": "POST",
|
|
292
|
+
"operationId": "create_6",
|
|
293
|
+
"summary": "Create synonym group",
|
|
294
|
+
"description": "Creates a synonym group from non-blank terms only and returns the created ordered group.",
|
|
295
|
+
"tags": [
|
|
296
|
+
"Synonym"
|
|
297
|
+
],
|
|
298
|
+
"parameters": [],
|
|
299
|
+
"requestBody": {
|
|
300
|
+
"content": {
|
|
301
|
+
"application/json": {
|
|
302
|
+
"schema": {
|
|
303
|
+
"type": "object",
|
|
304
|
+
"properties": {
|
|
305
|
+
"terms": {
|
|
306
|
+
"type": "array",
|
|
307
|
+
"items": {
|
|
308
|
+
"type": "string"
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
"responses": {
|
|
317
|
+
"default": {
|
|
318
|
+
"description": "default response",
|
|
319
|
+
"content": {
|
|
320
|
+
"application/json": {
|
|
321
|
+
"schema": {
|
|
322
|
+
"type": "object",
|
|
323
|
+
"properties": {
|
|
324
|
+
"id": {
|
|
325
|
+
"type": "integer"
|
|
326
|
+
},
|
|
327
|
+
"terms": {
|
|
328
|
+
"type": "array",
|
|
329
|
+
"items": {
|
|
330
|
+
"type": "string"
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
"termCount": {
|
|
334
|
+
"type": "integer"
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"path": "/api/v2/synonyms/{groupId}",
|
|
345
|
+
"method": "PUT",
|
|
346
|
+
"operationId": "update_5",
|
|
347
|
+
"summary": "Update synonym group",
|
|
348
|
+
"description": "Replaces all terms in the specified synonym group and returns the updated ordered group.",
|
|
349
|
+
"tags": [
|
|
350
|
+
"Synonym"
|
|
351
|
+
],
|
|
352
|
+
"parameters": [
|
|
353
|
+
{
|
|
354
|
+
"name": "groupId",
|
|
355
|
+
"in": "path",
|
|
356
|
+
"description": "Synonym group ID to update",
|
|
357
|
+
"required": true,
|
|
358
|
+
"schema": {
|
|
359
|
+
"type": "integer",
|
|
360
|
+
"format": "int32"
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
],
|
|
364
|
+
"requestBody": {
|
|
365
|
+
"content": {
|
|
366
|
+
"application/json": {
|
|
367
|
+
"schema": {
|
|
368
|
+
"type": "object",
|
|
369
|
+
"properties": {
|
|
370
|
+
"terms": {
|
|
371
|
+
"type": "array",
|
|
372
|
+
"items": {
|
|
373
|
+
"type": "string"
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"responses": {
|
|
382
|
+
"default": {
|
|
383
|
+
"description": "default response",
|
|
384
|
+
"content": {
|
|
385
|
+
"application/json": {
|
|
386
|
+
"schema": {
|
|
387
|
+
"type": "object",
|
|
388
|
+
"properties": {
|
|
389
|
+
"id": {
|
|
390
|
+
"type": "integer"
|
|
391
|
+
},
|
|
392
|
+
"terms": {
|
|
393
|
+
"type": "array",
|
|
394
|
+
"items": {
|
|
395
|
+
"type": "string"
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
"termCount": {
|
|
399
|
+
"type": "integer"
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
]
|
|
409
|
+
}
|