fmea-api-mcp-server 1.1.26 → 1.1.27
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/synonyms.js +17 -1
- package/endpoints/v2/classifications/core.json +1151 -0
- package/endpoints/v2/condition-library/core.json +18 -18
- package/endpoints/v2/condition-library-excel/core.json +3 -3
- package/endpoints/v2/evaluation/core.json +537 -0
- package/endpoints/v2/failure-modes/core.json +4 -4
- package/endpoints/v2/projects/core.json +47 -20
- package/endpoints/v2/system-definition/core.json +3 -3
- package/endpoints/v2/system-definition-excel/core.json +3 -3
- package/endpoints/v2/users/core.json +12 -12
- package/endpoints/v2/worksheet-templates/core.json +8 -8
- package/package.json +1 -1
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
"type": {
|
|
56
56
|
"type": "string",
|
|
57
57
|
"enum": [
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
58
|
+
"DESIGN",
|
|
59
|
+
"PROCESS",
|
|
60
|
+
"EQUIPMENT",
|
|
61
61
|
"FA",
|
|
62
62
|
"FTA",
|
|
63
|
-
"
|
|
63
|
+
"CPLAN"
|
|
64
64
|
]
|
|
65
65
|
},
|
|
66
66
|
"master": {
|
|
@@ -159,12 +159,12 @@
|
|
|
159
159
|
"type": {
|
|
160
160
|
"type": "string",
|
|
161
161
|
"enum": [
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
162
|
+
"DESIGN",
|
|
163
|
+
"PROCESS",
|
|
164
|
+
"EQUIPMENT",
|
|
165
165
|
"FA",
|
|
166
166
|
"FTA",
|
|
167
|
-
"
|
|
167
|
+
"CPLAN"
|
|
168
168
|
]
|
|
169
169
|
},
|
|
170
170
|
"master": {
|
|
@@ -382,12 +382,12 @@
|
|
|
382
382
|
"type": {
|
|
383
383
|
"type": "string",
|
|
384
384
|
"enum": [
|
|
385
|
-
"
|
|
386
|
-
"
|
|
387
|
-
"
|
|
385
|
+
"DESIGN",
|
|
386
|
+
"PROCESS",
|
|
387
|
+
"EQUIPMENT",
|
|
388
388
|
"FA",
|
|
389
389
|
"FTA",
|
|
390
|
-
"
|
|
390
|
+
"CPLAN"
|
|
391
391
|
]
|
|
392
392
|
},
|
|
393
393
|
"master": {
|
|
@@ -498,12 +498,12 @@
|
|
|
498
498
|
"type": {
|
|
499
499
|
"type": "string",
|
|
500
500
|
"enum": [
|
|
501
|
-
"
|
|
502
|
-
"
|
|
503
|
-
"
|
|
501
|
+
"DESIGN",
|
|
502
|
+
"PROCESS",
|
|
503
|
+
"EQUIPMENT",
|
|
504
504
|
"FA",
|
|
505
505
|
"FTA",
|
|
506
|
-
"
|
|
506
|
+
"CPLAN"
|
|
507
507
|
]
|
|
508
508
|
},
|
|
509
509
|
"master": {
|
|
@@ -1259,12 +1259,12 @@
|
|
|
1259
1259
|
"type": {
|
|
1260
1260
|
"type": "string",
|
|
1261
1261
|
"enum": [
|
|
1262
|
-
"
|
|
1263
|
-
"
|
|
1264
|
-
"
|
|
1262
|
+
"DESIGN",
|
|
1263
|
+
"PROCESS",
|
|
1264
|
+
"EQUIPMENT",
|
|
1265
1265
|
"FA",
|
|
1266
1266
|
"FTA",
|
|
1267
|
-
"
|
|
1267
|
+
"CPLAN"
|
|
1268
1268
|
]
|
|
1269
1269
|
},
|
|
1270
1270
|
"master": {
|
|
@@ -1399,6 +1399,33 @@
|
|
|
1399
1399
|
}
|
|
1400
1400
|
}
|
|
1401
1401
|
}
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
"path": "/api/v2/admin/projects/dashboard/refresh",
|
|
1405
|
+
"method": "POST",
|
|
1406
|
+
"operationId": "refreshWorksheetSnapshot",
|
|
1407
|
+
"summary": "Refresh worksheet dashboard snapshots",
|
|
1408
|
+
"description": "Manually refreshes worksheet dashboard snapshots. If divisionId is specified, only that division is refreshed; otherwise all cached divisions are refreshed sequentially. Divisions already being refreshed are skipped. Executes synchronously and returns the result after completion.",
|
|
1409
|
+
"tags": [],
|
|
1410
|
+
"parameters": [
|
|
1411
|
+
{
|
|
1412
|
+
"name": "divisionId",
|
|
1413
|
+
"in": "query",
|
|
1414
|
+
"schema": {
|
|
1415
|
+
"type": "integer",
|
|
1416
|
+
"format": "int32"
|
|
1417
|
+
}
|
|
1418
|
+
}
|
|
1419
|
+
],
|
|
1420
|
+
"requestBody": null,
|
|
1421
|
+
"responses": {
|
|
1422
|
+
"default": {
|
|
1423
|
+
"description": "default response",
|
|
1424
|
+
"content": {
|
|
1425
|
+
"application/json": {}
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
}
|
|
1402
1429
|
}
|
|
1403
1430
|
]
|
|
1404
1431
|
}
|
|
@@ -448,12 +448,12 @@
|
|
|
448
448
|
"defaultProjectType": {
|
|
449
449
|
"type": "string",
|
|
450
450
|
"enum": [
|
|
451
|
-
"
|
|
452
|
-
"
|
|
453
|
-
"
|
|
451
|
+
"DESIGN",
|
|
452
|
+
"PROCESS",
|
|
453
|
+
"EQUIPMENT",
|
|
454
454
|
"FA",
|
|
455
455
|
"FTA",
|
|
456
|
-
"
|
|
456
|
+
"CPLAN"
|
|
457
457
|
]
|
|
458
458
|
},
|
|
459
459
|
"language": {
|
|
@@ -527,12 +527,12 @@
|
|
|
527
527
|
"defaultProjectType": {
|
|
528
528
|
"type": "string",
|
|
529
529
|
"enum": [
|
|
530
|
-
"
|
|
531
|
-
"
|
|
532
|
-
"
|
|
530
|
+
"DESIGN",
|
|
531
|
+
"PROCESS",
|
|
532
|
+
"EQUIPMENT",
|
|
533
533
|
"FA",
|
|
534
534
|
"FTA",
|
|
535
|
-
"
|
|
535
|
+
"CPLAN"
|
|
536
536
|
]
|
|
537
537
|
},
|
|
538
538
|
"language": {
|
|
@@ -601,12 +601,12 @@
|
|
|
601
601
|
"defaultProjectType": {
|
|
602
602
|
"type": "string",
|
|
603
603
|
"enum": [
|
|
604
|
-
"
|
|
605
|
-
"
|
|
606
|
-
"
|
|
604
|
+
"DESIGN",
|
|
605
|
+
"PROCESS",
|
|
606
|
+
"EQUIPMENT",
|
|
607
607
|
"FA",
|
|
608
608
|
"FTA",
|
|
609
|
-
"
|
|
609
|
+
"CPLAN"
|
|
610
610
|
]
|
|
611
611
|
},
|
|
612
612
|
"language": {
|
|
@@ -44,12 +44,12 @@
|
|
|
44
44
|
"projectType": {
|
|
45
45
|
"type": "string",
|
|
46
46
|
"enum": [
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
47
|
+
"DESIGN",
|
|
48
|
+
"PROCESS",
|
|
49
|
+
"EQUIPMENT",
|
|
50
50
|
"FA",
|
|
51
51
|
"FTA",
|
|
52
|
-
"
|
|
52
|
+
"CPLAN"
|
|
53
53
|
]
|
|
54
54
|
},
|
|
55
55
|
"category": {
|
|
@@ -177,12 +177,12 @@
|
|
|
177
177
|
"projectType": {
|
|
178
178
|
"type": "string",
|
|
179
179
|
"enum": [
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
180
|
+
"DESIGN",
|
|
181
|
+
"PROCESS",
|
|
182
|
+
"EQUIPMENT",
|
|
183
183
|
"FA",
|
|
184
184
|
"FTA",
|
|
185
|
-
"
|
|
185
|
+
"CPLAN"
|
|
186
186
|
]
|
|
187
187
|
},
|
|
188
188
|
"category": {
|