fmea-api-mcp-server 1.1.41 → 1.1.43
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/endpoints/v2/projects/core.json +470 -19
- package/endpoints/v2/recommendation-items/core.json +7 -2
- package/endpoints/v2/search/core.json +23 -2
- package/endpoints/v2/templates/core.json +25 -12
- package/package.json +1 -1
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"path": "/api/v2/template/action-status",
|
|
8
8
|
"method": "GET",
|
|
9
9
|
"operationId": "getAll_1",
|
|
10
|
-
"summary": "Get all action
|
|
11
|
-
"description": "
|
|
10
|
+
"summary": "Get all action statuses",
|
|
11
|
+
"description": "Returns all action status items. Used for populating action status dropdowns in worksheets.",
|
|
12
12
|
"tags": [],
|
|
13
13
|
"parameters": [],
|
|
14
14
|
"responses": {
|
|
@@ -39,17 +39,22 @@
|
|
|
39
39
|
"path": "/api/v2/template/action-status",
|
|
40
40
|
"method": "POST",
|
|
41
41
|
"operationId": "create_7",
|
|
42
|
-
"summary": "Create action status
|
|
43
|
-
"description": "Creates a new action status
|
|
42
|
+
"summary": "Create action status",
|
|
43
|
+
"description": "Creates a new action status. Returns 201 with Location header. Requires ADMIN role. Throws 409 if title already exists.",
|
|
44
44
|
"tags": [],
|
|
45
45
|
"parameters": [],
|
|
46
46
|
"requestBody": {
|
|
47
47
|
"content": {
|
|
48
|
-
"
|
|
48
|
+
"application/json": {
|
|
49
49
|
"schema": {
|
|
50
|
+
"required": [
|
|
51
|
+
"title"
|
|
52
|
+
],
|
|
50
53
|
"type": "object",
|
|
51
54
|
"properties": {
|
|
52
55
|
"title": {
|
|
56
|
+
"maxLength": 30,
|
|
57
|
+
"minLength": 0,
|
|
53
58
|
"type": "string"
|
|
54
59
|
}
|
|
55
60
|
}
|
|
@@ -70,13 +75,14 @@
|
|
|
70
75
|
"path": "/api/v2/template/action-status/{id}",
|
|
71
76
|
"method": "GET",
|
|
72
77
|
"operationId": "getById_1",
|
|
73
|
-
"summary": "Get action status
|
|
74
|
-
"description": "
|
|
78
|
+
"summary": "Get action status by ID",
|
|
79
|
+
"description": "Returns a single action status by ID. Returns 404 if not found.",
|
|
75
80
|
"tags": [],
|
|
76
81
|
"parameters": [
|
|
77
82
|
{
|
|
78
83
|
"name": "id",
|
|
79
84
|
"in": "path",
|
|
85
|
+
"description": "Unique ID of the action status",
|
|
80
86
|
"required": true,
|
|
81
87
|
"schema": {
|
|
82
88
|
"type": "string"
|
|
@@ -108,13 +114,14 @@
|
|
|
108
114
|
"path": "/api/v2/template/action-status/{id}",
|
|
109
115
|
"method": "PUT",
|
|
110
116
|
"operationId": "update_6",
|
|
111
|
-
"summary": "Update action status
|
|
112
|
-
"description": "Updates an existing action status
|
|
117
|
+
"summary": "Update action status",
|
|
118
|
+
"description": "Updates an existing action status title. Returns updated DTO. Requires ADMIN role. Throws 404 if not found, 409 if title conflicts.",
|
|
113
119
|
"tags": [],
|
|
114
120
|
"parameters": [
|
|
115
121
|
{
|
|
116
122
|
"name": "id",
|
|
117
123
|
"in": "path",
|
|
124
|
+
"description": "Unique ID of the action status to update",
|
|
118
125
|
"required": true,
|
|
119
126
|
"schema": {
|
|
120
127
|
"type": "string"
|
|
@@ -123,11 +130,16 @@
|
|
|
123
130
|
],
|
|
124
131
|
"requestBody": {
|
|
125
132
|
"content": {
|
|
126
|
-
"
|
|
133
|
+
"application/json": {
|
|
127
134
|
"schema": {
|
|
135
|
+
"required": [
|
|
136
|
+
"title"
|
|
137
|
+
],
|
|
128
138
|
"type": "object",
|
|
129
139
|
"properties": {
|
|
130
140
|
"title": {
|
|
141
|
+
"maxLength": 30,
|
|
142
|
+
"minLength": 0,
|
|
131
143
|
"type": "string"
|
|
132
144
|
}
|
|
133
145
|
}
|
|
@@ -148,13 +160,14 @@
|
|
|
148
160
|
"path": "/api/v2/template/action-status/{id}",
|
|
149
161
|
"method": "DELETE",
|
|
150
162
|
"operationId": "delete_6",
|
|
151
|
-
"summary": "Delete action status
|
|
152
|
-
"description": "
|
|
163
|
+
"summary": "Delete action status",
|
|
164
|
+
"description": "Deletes an action status by ID. Returns 204 No Content. Requires ADMIN role. Throws 404 if not found.",
|
|
153
165
|
"tags": [],
|
|
154
166
|
"parameters": [
|
|
155
167
|
{
|
|
156
168
|
"name": "id",
|
|
157
169
|
"in": "path",
|
|
170
|
+
"description": "Unique ID of the action status to delete",
|
|
158
171
|
"required": true,
|
|
159
172
|
"schema": {
|
|
160
173
|
"type": "string"
|