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
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
{
|
|
39
39
|
"path": "/api/v2/template/action-status",
|
|
40
40
|
"method": "POST",
|
|
41
|
-
"operationId": "
|
|
41
|
+
"operationId": "create_7",
|
|
42
42
|
"summary": "Create action status template",
|
|
43
43
|
"description": "Creates a new action status template with a custom title. This endpoint is used to define additional states for improvement actions beyond the default options (e.g., 'Under Review', 'On Hold', 'Cancelled'). Requires ADMIN user level privileges. The request body must contain a 'title' field specifying the status name. Upon successful creation, returns the location URI of the new resource. Use this endpoint when you need to extend the available action status options for your organization's workflow. Synonyms: add action status, create new action state, define status template, add status option.",
|
|
44
44
|
"tags": [],
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
{
|
|
108
108
|
"path": "/api/v2/template/action-status/{id}",
|
|
109
109
|
"method": "PUT",
|
|
110
|
-
"operationId": "
|
|
110
|
+
"operationId": "update_6",
|
|
111
111
|
"summary": "Update action status template",
|
|
112
112
|
"description": "Updates an existing action status template's information. This endpoint allows administrators to modify the title of an action status template. Use this endpoint when you need to rename a status, correct typos, or standardize status terminology. Requires ADMIN user level privileges. The request body must contain a 'title' field with the new status name. The path parameter specifies the ID of the status template to update. Returns the updated DTO in the response. Synonyms: modify action status, edit action state, change status title, rename action status.",
|
|
113
113
|
"tags": [],
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
{
|
|
148
148
|
"path": "/api/v2/template/action-status/{id}",
|
|
149
149
|
"method": "DELETE",
|
|
150
|
-
"operationId": "
|
|
150
|
+
"operationId": "delete_6",
|
|
151
151
|
"summary": "Delete action status template",
|
|
152
152
|
"description": "Permanently removes an action status template from the system. This endpoint is used to delete obsolete or unused action status options. Requires ADMIN user level privileges. The path parameter specifies the ID of the status template to delete. Use with caution as this operation cannot be undone. Returns 204 No Content on successful deletion. Consider whether any existing actions reference this status before deletion to avoid data integrity issues. Synonyms: remove action status, delete action state, eliminate status template, remove status option.",
|
|
153
153
|
"tags": [],
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"method": "GET",
|
|
9
9
|
"summary": "Search users",
|
|
10
10
|
"description": "Returns paged users filtered by search, dept, and level.",
|
|
11
|
-
"operationId": "
|
|
11
|
+
"operationId": "list_12",
|
|
12
12
|
"tags": [
|
|
13
13
|
"User"
|
|
14
14
|
],
|
|
@@ -21,6 +21,15 @@
|
|
|
21
21
|
"type": "string"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
|
+
{
|
|
25
|
+
"name": "useSynonym",
|
|
26
|
+
"in": "query",
|
|
27
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
28
|
+
"schema": {
|
|
29
|
+
"type": "boolean",
|
|
30
|
+
"default": true
|
|
31
|
+
}
|
|
32
|
+
},
|
|
24
33
|
{
|
|
25
34
|
"name": "dept",
|
|
26
35
|
"in": "query",
|
|
@@ -149,7 +158,7 @@
|
|
|
149
158
|
{
|
|
150
159
|
"path": "/api/v2/users/{userId}",
|
|
151
160
|
"method": "GET",
|
|
152
|
-
"operationId": "
|
|
161
|
+
"operationId": "get_5",
|
|
153
162
|
"summary": "Get user details",
|
|
154
163
|
"description": "Retrieves detailed user profile information by user ID. Use this endpoint to fetch user account details, profile data, or user metadata for display purposes. This is commonly used when you need to show user information in UI components, validate user existence, or retrieve user context for other operations. The endpoint returns the complete user DTO including all available user attributes. Requires NORMAL user level or higher authentication.",
|
|
155
164
|
"tags": [
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{
|
|
7
7
|
"path": "/api/v2/worksheet-templates/{id}",
|
|
8
8
|
"method": "GET",
|
|
9
|
-
"operationId": "
|
|
9
|
+
"operationId": "get_7",
|
|
10
10
|
"summary": "Get worksheet template",
|
|
11
11
|
"description": "Returns a worksheet template. When search is provided, template headers are keyword-filtered.",
|
|
12
12
|
"tags": [],
|
|
@@ -27,6 +27,15 @@
|
|
|
27
27
|
"schema": {
|
|
28
28
|
"type": "string"
|
|
29
29
|
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "useSynonym",
|
|
33
|
+
"in": "query",
|
|
34
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
35
|
+
"schema": {
|
|
36
|
+
"type": "boolean",
|
|
37
|
+
"default": true
|
|
38
|
+
}
|
|
30
39
|
}
|
|
31
40
|
],
|
|
32
41
|
"requestBody": null,
|
|
@@ -146,7 +155,7 @@
|
|
|
146
155
|
{
|
|
147
156
|
"path": "/api/v2/worksheet-templates",
|
|
148
157
|
"method": "GET",
|
|
149
|
-
"operationId": "
|
|
158
|
+
"operationId": "list_13",
|
|
150
159
|
"summary": "List worksheet templates",
|
|
151
160
|
"description": "Returns worksheet templates filtered by FMEA type. When fmeaType is omitted, returns all templates for Design, Process, Equipment, and FA types, ordered by type and template order.",
|
|
152
161
|
"tags": [],
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
}
|
|
173
173
|
}
|
|
174
174
|
},
|
|
175
|
-
"operationId": "
|
|
175
|
+
"operationId": "create_8"
|
|
176
176
|
},
|
|
177
177
|
{
|
|
178
178
|
"path": "/api/v2/projects/{projectId}/worksheets/{reportNoSimple}",
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
}
|
|
199
199
|
}
|
|
200
200
|
],
|
|
201
|
-
"operationId": "
|
|
201
|
+
"operationId": "get_6",
|
|
202
202
|
"responses": {
|
|
203
203
|
"default": {
|
|
204
204
|
"description": "default response",
|
|
@@ -537,7 +537,7 @@
|
|
|
537
537
|
}
|
|
538
538
|
}
|
|
539
539
|
},
|
|
540
|
-
"operationId": "
|
|
540
|
+
"operationId": "delete_7"
|
|
541
541
|
}
|
|
542
542
|
]
|
|
543
543
|
}
|
|
@@ -152,6 +152,15 @@
|
|
|
152
152
|
"schema": {
|
|
153
153
|
"type": "string"
|
|
154
154
|
}
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"name": "useSynonym",
|
|
158
|
+
"in": "query",
|
|
159
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
160
|
+
"schema": {
|
|
161
|
+
"type": "boolean",
|
|
162
|
+
"default": true
|
|
163
|
+
}
|
|
155
164
|
}
|
|
156
165
|
],
|
|
157
166
|
"operationId": "getHeaders",
|
|
@@ -26,6 +26,15 @@
|
|
|
26
26
|
"schema": {
|
|
27
27
|
"type": "string"
|
|
28
28
|
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "useSynonym",
|
|
32
|
+
"in": "query",
|
|
33
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
34
|
+
"schema": {
|
|
35
|
+
"type": "boolean",
|
|
36
|
+
"default": true
|
|
37
|
+
}
|
|
29
38
|
}
|
|
30
39
|
],
|
|
31
40
|
"operationId": "getHeaders_1",
|