fmea-api-mcp-server 1.1.50 → 1.1.52
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/changelog.json +310 -0
- 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 +28 -1
- package/dist/synonyms.js +17 -2
- package/endpoints/v2/additional-info/core.json +20 -139
- package/endpoints/v2/additional-info-excel/core.json +48 -0
- package/endpoints/v2/api-key-excel/core.json +72 -0
- package/endpoints/v2/api-keys/core.json +16 -0
- package/endpoints/v2/apikey-log-excel/core.json +88 -0
- package/endpoints/v2/classification-excel/core.json +40 -0
- package/endpoints/v2/classifications/core.json +11 -2
- package/endpoints/v2/condition-library-excel/core.json +34 -0
- package/endpoints/v2/division-excel/core.json +40 -0
- package/endpoints/v2/divisions/core.json +37 -0
- package/endpoints/v2/evaluation/core.json +20 -3
- package/endpoints/v2/evaluation-excel/core.json +48 -0
- package/endpoints/v2/notice-excel/core.json +40 -0
- package/endpoints/v2/notices/core.json +45 -0
- package/endpoints/v2/process-symbol-excel/core.json +90 -0
- package/endpoints/v2/revisions/core.json +185 -0
- package/endpoints/v2/synonym-excel/core.json +2 -2
- package/endpoints/v2/synonyms/core.json +1 -1
- package/endpoints/v2/user-excel/core.json +64 -0
- package/endpoints/v2/worksheet-template-excel/core.json +56 -0
- package/package.json +1 -1
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"category": "Worksheet Template Excel",
|
|
3
|
+
"version": "v2",
|
|
4
|
+
"description": "",
|
|
5
|
+
"endpoints": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/api/v2/worksheet-template-excel/export",
|
|
8
|
+
"method": "GET",
|
|
9
|
+
"operationId": "export_10",
|
|
10
|
+
"summary": "Export worksheet templates to Excel",
|
|
11
|
+
"description": "Exports worksheet templates to an XLSX file and returns a download URI. Supports filtering by FMEA type and keyword search. Requires admin permission.",
|
|
12
|
+
"tags": [
|
|
13
|
+
"WorksheetTemplateExcel"
|
|
14
|
+
],
|
|
15
|
+
"parameters": [
|
|
16
|
+
{
|
|
17
|
+
"name": "fmeaType",
|
|
18
|
+
"in": "query",
|
|
19
|
+
"description": "Filter by FMEA type (e.g. DESIGN, PROCESS, EQUIPMENT, FA)",
|
|
20
|
+
"schema": {
|
|
21
|
+
"type": "string"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "q",
|
|
26
|
+
"in": "query",
|
|
27
|
+
"description": "Keyword search on template name (max 100 characters)",
|
|
28
|
+
"schema": {
|
|
29
|
+
"type": "string"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"requestBody": null,
|
|
34
|
+
"responses": {
|
|
35
|
+
"default": {
|
|
36
|
+
"description": "default response",
|
|
37
|
+
"content": {
|
|
38
|
+
"application/json": {
|
|
39
|
+
"schema": {
|
|
40
|
+
"type": "object",
|
|
41
|
+
"properties": {
|
|
42
|
+
"fileName": {
|
|
43
|
+
"type": "string"
|
|
44
|
+
},
|
|
45
|
+
"downloadUri": {
|
|
46
|
+
"type": "string"
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
}
|