fmea-api-mcp-server 1.1.13 → 1.1.15

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.
@@ -32,7 +32,25 @@
32
32
  "default": {
33
33
  "description": "default response",
34
34
  "content": {
35
- "application/json": {}
35
+ "application/json": {
36
+ "schema": {
37
+ "type": "object",
38
+ "properties": {
39
+ "id": {
40
+ "type": "integer"
41
+ },
42
+ "reportNo": {
43
+ "type": "string"
44
+ },
45
+ "failureModeId": {
46
+ "type": "string"
47
+ },
48
+ "order": {
49
+ "type": "integer"
50
+ }
51
+ }
52
+ }
53
+ }
36
54
  }
37
55
  }
38
56
  }
@@ -108,7 +126,68 @@
108
126
  "default": {
109
127
  "description": "default response",
110
128
  "content": {
111
- "application/json": {}
129
+ "application/json": {
130
+ "schema": {
131
+ "type": "array",
132
+ "items": {
133
+ "type": "object",
134
+ "properties": {
135
+ "id": {
136
+ "type": "integer"
137
+ },
138
+ "columnId": {
139
+ "type": "integer"
140
+ },
141
+ "columnKey": {
142
+ "type": "string"
143
+ },
144
+ "dataType": {
145
+ "type": "string",
146
+ "enum": [
147
+ "INTEGER",
148
+ "BOOLEAN",
149
+ "TEXT",
150
+ "DATE",
151
+ "REFER"
152
+ ]
153
+ },
154
+ "parentId": {
155
+ "type": "integer"
156
+ },
157
+ "groupHeader": {
158
+ "type": "boolean"
159
+ },
160
+ "name": {
161
+ "type": "string"
162
+ },
163
+ "width": {
164
+ "type": "integer"
165
+ },
166
+ "readOnly": {
167
+ "type": "boolean"
168
+ },
169
+ "mergeGroup": {
170
+ "type": "integer"
171
+ },
172
+ "order": {
173
+ "type": "integer"
174
+ },
175
+ "vAlign": {
176
+ "type": "integer"
177
+ },
178
+ "hAlign": {
179
+ "type": "integer"
180
+ },
181
+ "style": {
182
+ "type": "string"
183
+ },
184
+ "description": {
185
+ "type": "string"
186
+ }
187
+ }
188
+ }
189
+ }
190
+ }
112
191
  }
113
192
  }
114
193
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fmea-api-mcp-server",
3
- "version": "1.1.13",
3
+ "version": "1.1.15",
4
4
  "description": "MCP server for serving API documentation from endpoints directory",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",