fmea-api-mcp-server 1.1.64 → 1.1.65
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/1.1.64.json +10 -0
- package/data/changelog/next.json +748 -48
- package/data/endpoint-lookup.json +1 -1
- package/data/enums.json +2 -2
- package/data/search-index.oxy +1 -1
- package/dist/index.js +1 -1
- package/dist/services/search/OramaSearchService.js +4 -1
- package/dist/synonyms.js +2 -1
- package/dist/utils/ScoreCalculator.js +7 -2
- package/endpoints/v2/action-status/core.json +59 -0
- package/endpoints/v2/classification-excel/core.json +1 -1
- package/endpoints/v2/classifications/core.json +110 -458
- package/endpoints/v2/condition-library-excel/core.json +220 -2
- package/endpoints/v2/division-excel/core.json +1 -1
- package/endpoints/v2/divisions/core.json +214 -238
- package/endpoints/v2/documents/core.json +1 -1
- package/endpoints/v2/evaluation/core.json +433 -663
- package/endpoints/v2/evaluation-excel/core.json +1 -1
- package/endpoints/v2/failure-mode-library/core.json +189 -0
- package/endpoints/v2/failure-mode-library-excel/core.json +289 -0
- package/endpoints/v2/fourm/core.json +3 -3
- package/endpoints/v2/high-items/core.json +1 -1
- package/endpoints/v2/notice-excel/core.json +1 -1
- package/endpoints/v2/notices/core.json +4 -4
- package/endpoints/v2/process-symbol-excel/core.json +63 -4
- package/endpoints/v2/process-symbols/core.json +2 -2
- package/endpoints/v2/projects/core.json +26 -2
- package/endpoints/v2/scoring/core.json +34 -137
- package/endpoints/v2/synonym-excel/core.json +101 -8
- package/endpoints/v2/synonyms/core.json +58 -176
- package/endpoints/v2/templates/core.json +1 -157
- package/endpoints/v2/user-excel/core.json +1 -1
- package/endpoints/v2/users/core.json +42 -0
- package/endpoints/v2/worksheet-template-excel/core.json +1 -1
- package/endpoints/v2/worksheets/core.json +2 -2
- package/endpoints/v2/worksheets/excel.json +1 -1
- package/package.json +1 -1
- package/endpoints/v2/fm-checkpoint/core.json +0 -363
|
@@ -3,80 +3,12 @@
|
|
|
3
3
|
"version": "v2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"endpoints": [
|
|
6
|
-
{
|
|
7
|
-
"path": "/api/v2/synonyms",
|
|
8
|
-
"method": "DELETE",
|
|
9
|
-
"operationId": "deleteBatch_2",
|
|
10
|
-
"summary": "Delete synonym groups",
|
|
11
|
-
"description": "Deletes multiple synonym groups using the provided ID list and returns no content.",
|
|
12
|
-
"tags": [
|
|
13
|
-
"Synonym"
|
|
14
|
-
],
|
|
15
|
-
"parameters": [],
|
|
16
|
-
"requestBody": {
|
|
17
|
-
"content": {
|
|
18
|
-
"application/json": {
|
|
19
|
-
"schema": {
|
|
20
|
-
"type": "object",
|
|
21
|
-
"properties": {
|
|
22
|
-
"ids": {
|
|
23
|
-
"type": "array",
|
|
24
|
-
"items": {
|
|
25
|
-
"type": "integer",
|
|
26
|
-
"format": "int32"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"responses": {
|
|
35
|
-
"default": {
|
|
36
|
-
"description": "default response",
|
|
37
|
-
"content": {
|
|
38
|
-
"application/json": {}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"path": "/api/v2/synonyms/{groupId}",
|
|
45
|
-
"method": "DELETE",
|
|
46
|
-
"operationId": "delete_5",
|
|
47
|
-
"summary": "Delete synonym group",
|
|
48
|
-
"description": "Deletes a single synonym group by group ID. Returns 404 if the group does not exist.",
|
|
49
|
-
"tags": [
|
|
50
|
-
"Synonym"
|
|
51
|
-
],
|
|
52
|
-
"parameters": [
|
|
53
|
-
{
|
|
54
|
-
"name": "groupId",
|
|
55
|
-
"in": "path",
|
|
56
|
-
"description": "Synonym group ID to delete",
|
|
57
|
-
"required": true,
|
|
58
|
-
"schema": {
|
|
59
|
-
"type": "integer",
|
|
60
|
-
"format": "int32"
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
],
|
|
64
|
-
"requestBody": null,
|
|
65
|
-
"responses": {
|
|
66
|
-
"default": {
|
|
67
|
-
"description": "default response",
|
|
68
|
-
"content": {
|
|
69
|
-
"application/json": {}
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
6
|
{
|
|
75
7
|
"path": "/api/v2/synonyms",
|
|
76
8
|
"method": "GET",
|
|
77
9
|
"operationId": "list_11",
|
|
78
|
-
"summary": "List synonym groups",
|
|
79
|
-
"description": "Returns synonym
|
|
10
|
+
"summary": "List synonym snapshot groups",
|
|
11
|
+
"description": "Returns the full synonym group list as the JSON snapshot source for the admin toolbar. Optional q filtering is still available, but the response remains a full-list array response.",
|
|
80
12
|
"tags": [
|
|
81
13
|
"Synonym"
|
|
82
14
|
],
|
|
@@ -97,26 +29,6 @@
|
|
|
97
29
|
"type": "boolean",
|
|
98
30
|
"default": true
|
|
99
31
|
}
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"name": "page",
|
|
103
|
-
"in": "query",
|
|
104
|
-
"description": "Page number (default: 1)",
|
|
105
|
-
"schema": {
|
|
106
|
-
"type": "integer",
|
|
107
|
-
"default": 1,
|
|
108
|
-
"format": "int32"
|
|
109
|
-
}
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"name": "size",
|
|
113
|
-
"in": "query",
|
|
114
|
-
"description": "Page size (default: 50, max: 1000)",
|
|
115
|
-
"schema": {
|
|
116
|
-
"type": "integer",
|
|
117
|
-
"default": 50,
|
|
118
|
-
"format": "int32"
|
|
119
|
-
}
|
|
120
32
|
}
|
|
121
33
|
],
|
|
122
34
|
"requestBody": null,
|
|
@@ -126,7 +38,24 @@
|
|
|
126
38
|
"content": {
|
|
127
39
|
"application/json": {
|
|
128
40
|
"schema": {
|
|
129
|
-
"type": "
|
|
41
|
+
"type": "array",
|
|
42
|
+
"items": {
|
|
43
|
+
"type": "object",
|
|
44
|
+
"properties": {
|
|
45
|
+
"id": {
|
|
46
|
+
"type": "integer"
|
|
47
|
+
},
|
|
48
|
+
"terms": {
|
|
49
|
+
"type": "array",
|
|
50
|
+
"items": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"termCount": {
|
|
55
|
+
"type": "integer"
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
},
|
|
130
59
|
"properties": {
|
|
131
60
|
"items": {
|
|
132
61
|
"type": "array",
|
|
@@ -173,7 +102,7 @@
|
|
|
173
102
|
"method": "GET",
|
|
174
103
|
"operationId": "expand",
|
|
175
104
|
"summary": "Expand synonym terms",
|
|
176
|
-
"description": "
|
|
105
|
+
"description": "This helper read expands a keyword into matching synonym terms. It is separate from the main GET /api/v2/synonyms snapshot source used by the admin toolbar.",
|
|
177
106
|
"tags": [
|
|
178
107
|
"Synonym"
|
|
179
108
|
],
|
|
@@ -210,7 +139,7 @@
|
|
|
210
139
|
"method": "GET",
|
|
211
140
|
"operationId": "metadata",
|
|
212
141
|
"summary": "Get synonym metadata",
|
|
213
|
-
"description": "
|
|
142
|
+
"description": "This helper read returns synonym dictionary metadata such as group count and max term count. It is separate from the main GET /api/v2/synonyms snapshot source.",
|
|
214
143
|
"tags": [
|
|
215
144
|
"Synonym"
|
|
216
145
|
],
|
|
@@ -242,7 +171,7 @@
|
|
|
242
171
|
"method": "GET",
|
|
243
172
|
"operationId": "get_4",
|
|
244
173
|
"summary": "Get synonym group",
|
|
245
|
-
"description": "
|
|
174
|
+
"description": "This helper read returns a single synonym group with its ordered term list. The main admin snapshot source remains GET /api/v2/synonyms.",
|
|
246
175
|
"tags": [
|
|
247
176
|
"Synonym"
|
|
248
177
|
],
|
|
@@ -288,10 +217,10 @@
|
|
|
288
217
|
},
|
|
289
218
|
{
|
|
290
219
|
"path": "/api/v2/synonyms",
|
|
291
|
-
"method": "
|
|
292
|
-
"operationId": "
|
|
293
|
-
"summary": "
|
|
294
|
-
"description": "
|
|
220
|
+
"method": "PUT",
|
|
221
|
+
"operationId": "saveSnapshot_3",
|
|
222
|
+
"summary": "Save synonym snapshot",
|
|
223
|
+
"description": "Saves the full snapshot from the admin toolbar and returns the latest full list. This is the main JSON save path, omitted groups are deleted, and Excel helper routes remain secondary helpers.",
|
|
295
224
|
"tags": [
|
|
296
225
|
"Synonym"
|
|
297
226
|
],
|
|
@@ -300,77 +229,27 @@
|
|
|
300
229
|
"content": {
|
|
301
230
|
"application/json": {
|
|
302
231
|
"schema": {
|
|
232
|
+
"required": [
|
|
233
|
+
"groups"
|
|
234
|
+
],
|
|
303
235
|
"type": "object",
|
|
304
236
|
"properties": {
|
|
305
|
-
"
|
|
237
|
+
"groups": {
|
|
306
238
|
"type": "array",
|
|
307
239
|
"items": {
|
|
308
|
-
"type": "
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
"application/json": {
|
|
321
|
-
"schema": {
|
|
322
|
-
"type": "object",
|
|
323
|
-
"properties": {
|
|
324
|
-
"id": {
|
|
325
|
-
"type": "integer"
|
|
326
|
-
},
|
|
327
|
-
"terms": {
|
|
328
|
-
"type": "array",
|
|
329
|
-
"items": {
|
|
330
|
-
"type": "string"
|
|
240
|
+
"type": "object",
|
|
241
|
+
"properties": {
|
|
242
|
+
"id": {
|
|
243
|
+
"type": "integer",
|
|
244
|
+
"format": "int32"
|
|
245
|
+
},
|
|
246
|
+
"terms": {
|
|
247
|
+
"type": "array",
|
|
248
|
+
"items": {
|
|
249
|
+
"type": "string"
|
|
250
|
+
}
|
|
251
|
+
}
|
|
331
252
|
}
|
|
332
|
-
},
|
|
333
|
-
"termCount": {
|
|
334
|
-
"type": "integer"
|
|
335
|
-
}
|
|
336
|
-
}
|
|
337
|
-
}
|
|
338
|
-
}
|
|
339
|
-
}
|
|
340
|
-
}
|
|
341
|
-
}
|
|
342
|
-
},
|
|
343
|
-
{
|
|
344
|
-
"path": "/api/v2/synonyms/{groupId}",
|
|
345
|
-
"method": "PUT",
|
|
346
|
-
"operationId": "update_5",
|
|
347
|
-
"summary": "Update synonym group",
|
|
348
|
-
"description": "Replaces all terms in the specified synonym group and returns the updated ordered group.",
|
|
349
|
-
"tags": [
|
|
350
|
-
"Synonym"
|
|
351
|
-
],
|
|
352
|
-
"parameters": [
|
|
353
|
-
{
|
|
354
|
-
"name": "groupId",
|
|
355
|
-
"in": "path",
|
|
356
|
-
"description": "Synonym group ID to update",
|
|
357
|
-
"required": true,
|
|
358
|
-
"schema": {
|
|
359
|
-
"type": "integer",
|
|
360
|
-
"format": "int32"
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
],
|
|
364
|
-
"requestBody": {
|
|
365
|
-
"content": {
|
|
366
|
-
"application/json": {
|
|
367
|
-
"schema": {
|
|
368
|
-
"type": "object",
|
|
369
|
-
"properties": {
|
|
370
|
-
"terms": {
|
|
371
|
-
"type": "array",
|
|
372
|
-
"items": {
|
|
373
|
-
"type": "string"
|
|
374
253
|
}
|
|
375
254
|
}
|
|
376
255
|
}
|
|
@@ -384,19 +263,22 @@
|
|
|
384
263
|
"content": {
|
|
385
264
|
"application/json": {
|
|
386
265
|
"schema": {
|
|
387
|
-
"type": "
|
|
388
|
-
"
|
|
389
|
-
"
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
"
|
|
395
|
-
"type": "
|
|
266
|
+
"type": "array",
|
|
267
|
+
"items": {
|
|
268
|
+
"type": "object",
|
|
269
|
+
"properties": {
|
|
270
|
+
"id": {
|
|
271
|
+
"type": "integer"
|
|
272
|
+
},
|
|
273
|
+
"terms": {
|
|
274
|
+
"type": "array",
|
|
275
|
+
"items": {
|
|
276
|
+
"type": "string"
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
"termCount": {
|
|
280
|
+
"type": "integer"
|
|
396
281
|
}
|
|
397
|
-
},
|
|
398
|
-
"termCount": {
|
|
399
|
-
"type": "integer"
|
|
400
282
|
}
|
|
401
283
|
}
|
|
402
284
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"method": "GET",
|
|
9
9
|
"operationId": "getAll_1",
|
|
10
10
|
"summary": "Get all action statuses",
|
|
11
|
-
"description": "Returns
|
|
11
|
+
"description": "Returns the full action status list as the FE snapshot source while preserving the existing flat list response shape used by current consumers.",
|
|
12
12
|
"tags": [
|
|
13
13
|
"Template"
|
|
14
14
|
],
|
|
@@ -36,162 +36,6 @@
|
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"path": "/api/v2/template/action-status",
|
|
42
|
-
"method": "POST",
|
|
43
|
-
"operationId": "create_7",
|
|
44
|
-
"summary": "Create action status",
|
|
45
|
-
"description": "Creates a new action status. Returns 201 with Location header. Requires ADMIN role. Throws 409 if title already exists.",
|
|
46
|
-
"tags": [
|
|
47
|
-
"Template"
|
|
48
|
-
],
|
|
49
|
-
"parameters": [],
|
|
50
|
-
"requestBody": {
|
|
51
|
-
"content": {
|
|
52
|
-
"application/json": {
|
|
53
|
-
"schema": {
|
|
54
|
-
"required": [
|
|
55
|
-
"title"
|
|
56
|
-
],
|
|
57
|
-
"type": "object",
|
|
58
|
-
"properties": {
|
|
59
|
-
"title": {
|
|
60
|
-
"maxLength": 30,
|
|
61
|
-
"minLength": 0,
|
|
62
|
-
"type": "string"
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
},
|
|
69
|
-
"responses": {
|
|
70
|
-
"default": {
|
|
71
|
-
"description": "default response",
|
|
72
|
-
"content": {
|
|
73
|
-
"*/*": {}
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"path": "/api/v2/template/action-status/{id}",
|
|
80
|
-
"method": "GET",
|
|
81
|
-
"operationId": "getById_1",
|
|
82
|
-
"summary": "Get action status by ID",
|
|
83
|
-
"description": "Returns a single action status by ID. Returns 404 if not found.",
|
|
84
|
-
"tags": [
|
|
85
|
-
"Template"
|
|
86
|
-
],
|
|
87
|
-
"parameters": [
|
|
88
|
-
{
|
|
89
|
-
"name": "id",
|
|
90
|
-
"in": "path",
|
|
91
|
-
"description": "Unique ID of the action status",
|
|
92
|
-
"required": true,
|
|
93
|
-
"schema": {
|
|
94
|
-
"type": "string"
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
],
|
|
98
|
-
"responses": {
|
|
99
|
-
"default": {
|
|
100
|
-
"description": "default response",
|
|
101
|
-
"content": {
|
|
102
|
-
"application/json": {
|
|
103
|
-
"schema": {
|
|
104
|
-
"type": "object",
|
|
105
|
-
"properties": {
|
|
106
|
-
"id": {
|
|
107
|
-
"type": "integer"
|
|
108
|
-
},
|
|
109
|
-
"title": {
|
|
110
|
-
"type": "string"
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"path": "/api/v2/template/action-status/{id}",
|
|
121
|
-
"method": "PUT",
|
|
122
|
-
"operationId": "update_6",
|
|
123
|
-
"summary": "Update action status",
|
|
124
|
-
"description": "Updates an existing action status title. Returns updated DTO. Requires ADMIN role. Throws 404 if not found, 409 if title conflicts.",
|
|
125
|
-
"tags": [
|
|
126
|
-
"Template"
|
|
127
|
-
],
|
|
128
|
-
"parameters": [
|
|
129
|
-
{
|
|
130
|
-
"name": "id",
|
|
131
|
-
"in": "path",
|
|
132
|
-
"description": "Unique ID of the action status to update",
|
|
133
|
-
"required": true,
|
|
134
|
-
"schema": {
|
|
135
|
-
"type": "string"
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
],
|
|
139
|
-
"requestBody": {
|
|
140
|
-
"content": {
|
|
141
|
-
"application/json": {
|
|
142
|
-
"schema": {
|
|
143
|
-
"required": [
|
|
144
|
-
"title"
|
|
145
|
-
],
|
|
146
|
-
"type": "object",
|
|
147
|
-
"properties": {
|
|
148
|
-
"title": {
|
|
149
|
-
"maxLength": 30,
|
|
150
|
-
"minLength": 0,
|
|
151
|
-
"type": "string"
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
},
|
|
158
|
-
"responses": {
|
|
159
|
-
"default": {
|
|
160
|
-
"description": "default response",
|
|
161
|
-
"content": {
|
|
162
|
-
"*/*": {}
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"path": "/api/v2/template/action-status/{id}",
|
|
169
|
-
"method": "DELETE",
|
|
170
|
-
"operationId": "delete_6",
|
|
171
|
-
"summary": "Delete action status",
|
|
172
|
-
"description": "Deletes an action status by ID. Returns 204 No Content. Requires ADMIN role. Throws 404 if not found.",
|
|
173
|
-
"tags": [
|
|
174
|
-
"Template"
|
|
175
|
-
],
|
|
176
|
-
"parameters": [
|
|
177
|
-
{
|
|
178
|
-
"name": "id",
|
|
179
|
-
"in": "path",
|
|
180
|
-
"description": "Unique ID of the action status to delete",
|
|
181
|
-
"required": true,
|
|
182
|
-
"schema": {
|
|
183
|
-
"type": "string"
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
],
|
|
187
|
-
"responses": {
|
|
188
|
-
"default": {
|
|
189
|
-
"description": "default response",
|
|
190
|
-
"content": {
|
|
191
|
-
"*/*": {}
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
39
|
}
|
|
196
40
|
]
|
|
197
41
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{
|
|
7
7
|
"path": "/api/v2/user-excel/export",
|
|
8
8
|
"method": "GET",
|
|
9
|
-
"operationId": "
|
|
9
|
+
"operationId": "export_10",
|
|
10
10
|
"summary": "Export users to Excel",
|
|
11
11
|
"description": "Exports users to an XLSX file and returns a download URI. Supports filtering by keyword, department, and user level. Requires admin permission.",
|
|
12
12
|
"tags": [
|
|
@@ -127,6 +127,12 @@
|
|
|
127
127
|
"code": {
|
|
128
128
|
"type": "string"
|
|
129
129
|
},
|
|
130
|
+
"aliases": {
|
|
131
|
+
"type": "array",
|
|
132
|
+
"items": {
|
|
133
|
+
"type": "string"
|
|
134
|
+
}
|
|
135
|
+
},
|
|
130
136
|
"relatedDivisions": {
|
|
131
137
|
"type": "array",
|
|
132
138
|
"items": {
|
|
@@ -202,6 +208,12 @@
|
|
|
202
208
|
"code": {
|
|
203
209
|
"type": "string"
|
|
204
210
|
},
|
|
211
|
+
"aliases": {
|
|
212
|
+
"type": "array",
|
|
213
|
+
"items": {
|
|
214
|
+
"type": "string"
|
|
215
|
+
}
|
|
216
|
+
},
|
|
205
217
|
"relatedDivisions": {
|
|
206
218
|
"type": "array",
|
|
207
219
|
"items": {
|
|
@@ -284,6 +296,12 @@
|
|
|
284
296
|
"code": {
|
|
285
297
|
"type": "string"
|
|
286
298
|
},
|
|
299
|
+
"aliases": {
|
|
300
|
+
"type": "array",
|
|
301
|
+
"items": {
|
|
302
|
+
"type": "string"
|
|
303
|
+
}
|
|
304
|
+
},
|
|
287
305
|
"relatedDivisions": {
|
|
288
306
|
"type": "array",
|
|
289
307
|
"items": {
|
|
@@ -436,6 +454,12 @@
|
|
|
436
454
|
"code": {
|
|
437
455
|
"type": "string"
|
|
438
456
|
},
|
|
457
|
+
"aliases": {
|
|
458
|
+
"type": "array",
|
|
459
|
+
"items": {
|
|
460
|
+
"type": "string"
|
|
461
|
+
}
|
|
462
|
+
},
|
|
439
463
|
"relatedDivisions": {
|
|
440
464
|
"type": "array",
|
|
441
465
|
"items": {
|
|
@@ -487,6 +511,12 @@
|
|
|
487
511
|
"code": {
|
|
488
512
|
"type": "string"
|
|
489
513
|
},
|
|
514
|
+
"aliases": {
|
|
515
|
+
"type": "array",
|
|
516
|
+
"items": {
|
|
517
|
+
"type": "string"
|
|
518
|
+
}
|
|
519
|
+
},
|
|
490
520
|
"relatedDivisions": {
|
|
491
521
|
"type": "array",
|
|
492
522
|
"items": {
|
|
@@ -589,6 +619,12 @@
|
|
|
589
619
|
"code": {
|
|
590
620
|
"type": "string"
|
|
591
621
|
},
|
|
622
|
+
"aliases": {
|
|
623
|
+
"type": "array",
|
|
624
|
+
"items": {
|
|
625
|
+
"type": "string"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
592
628
|
"relatedDivisions": {
|
|
593
629
|
"type": "array",
|
|
594
630
|
"items": {
|
|
@@ -640,6 +676,12 @@
|
|
|
640
676
|
"code": {
|
|
641
677
|
"type": "string"
|
|
642
678
|
},
|
|
679
|
+
"aliases": {
|
|
680
|
+
"type": "array",
|
|
681
|
+
"items": {
|
|
682
|
+
"type": "string"
|
|
683
|
+
}
|
|
684
|
+
},
|
|
643
685
|
"relatedDivisions": {
|
|
644
686
|
"type": "array",
|
|
645
687
|
"items": {
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{
|
|
7
7
|
"path": "/api/v2/worksheet-template-excel/export",
|
|
8
8
|
"method": "GET",
|
|
9
|
-
"operationId": "
|
|
9
|
+
"operationId": "export_11",
|
|
10
10
|
"summary": "Export worksheet templates to Excel",
|
|
11
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
12
|
"tags": [
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
180
|
},
|
|
181
|
-
"operationId": "
|
|
181
|
+
"operationId": "create_5"
|
|
182
182
|
},
|
|
183
183
|
{
|
|
184
184
|
"path": "/api/v2/projects/{projectId}/worksheets/{reportNoSimple}",
|
|
@@ -620,7 +620,7 @@
|
|
|
620
620
|
}
|
|
621
621
|
}
|
|
622
622
|
},
|
|
623
|
-
"operationId": "
|
|
623
|
+
"operationId": "delete_4"
|
|
624
624
|
}
|
|
625
625
|
]
|
|
626
626
|
}
|