fmea-api-mcp-server 1.0.4 → 1.0.6
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/README.md +7 -1
- package/dist/index.js +131 -13
- package/endpoints/README.md +40 -0
- package/endpoints/v1/projects/core.json +156 -0
- package/endpoints/v1/projects/data.json +64 -0
- package/endpoints/v1/projects/lifecycle.json +85 -0
- package/endpoints/v1/projects/recommendations.json +58 -0
- package/endpoints/v2/worksheets/excel.json +161 -0
- package/endpoints/v2/{worksheets.json → worksheets/management.json} +2 -183
- package/endpoints/v2/worksheets/templates.json +34 -0
- package/package.json +1 -1
- package/endpoints/v1/projects.json +0 -342
- /package/endpoints/v1/{authentication.json → authentication/core.json} +0 -0
- /package/endpoints/v1/{block-diagrams.json → block-diagrams/core.json} +0 -0
- /package/endpoints/v1/{divisions.json → divisions/core.json} +0 -0
- /package/endpoints/v1/{failure-modes.json → failure-modes/core.json} +0 -0
- /package/endpoints/v1/{files.json → files/core.json} +0 -0
- /package/endpoints/v1/{fta.json → fta/core.json} +0 -0
- /package/endpoints/v1/{knowledge-base.json → knowledge-base/core.json} +0 -0
- /package/endpoints/v1/{synonyms.json → synonyms/core.json} +0 -0
- /package/endpoints/v1/{terms.json → terms/core.json} +0 -0
- /package/endpoints/v1/{users.json → users/core.json} +0 -0
- /package/endpoints/v1/{worksheets.json → worksheets/core.json} +0 -0
- /package/endpoints/v2/{api-keys.json → api-keys/core.json} +0 -0
- /package/endpoints/v2/{block-diagrams.json → block-diagrams/core.json} +0 -0
- /package/endpoints/v2/{divisions.json → divisions/core.json} +0 -0
- /package/endpoints/v2/{documents.json → documents/core.json} +0 -0
- /package/endpoints/v2/{failure-modes.json → failure-modes/core.json} +0 -0
- /package/endpoints/v2/{files.json → files/core.json} +0 -0
- /package/endpoints/v2/{fourm.json → fourm/core.json} +0 -0
- /package/endpoints/v2/{projects.json → projects/core.json} +0 -0
- /package/endpoints/v2/{system.json → system/core.json} +0 -0
- /package/endpoints/v2/{templates.json → templates/core.json} +0 -0
- /package/endpoints/v2/{users.json → users/core.json} +0 -0
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
{
|
|
2
|
+
"category": "Worksheets",
|
|
3
|
+
"version": "v2",
|
|
4
|
+
"description": "Worksheet Excel Operations",
|
|
5
|
+
"endpoints": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/api/v2/projects/{projectId}/worksheet-excel/{uuid}",
|
|
8
|
+
"method": "PUT",
|
|
9
|
+
"summary": "Update worksheet Excel",
|
|
10
|
+
"description": "Update an existing worksheet Excel file",
|
|
11
|
+
"tags": [],
|
|
12
|
+
"parameters": [
|
|
13
|
+
{
|
|
14
|
+
"name": "projectId",
|
|
15
|
+
"in": "path",
|
|
16
|
+
"required": true,
|
|
17
|
+
"schema": {
|
|
18
|
+
"type": "string"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"name": "uuid",
|
|
23
|
+
"in": "path",
|
|
24
|
+
"required": true,
|
|
25
|
+
"schema": {
|
|
26
|
+
"type": "string"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"requestBody": {
|
|
31
|
+
"content": {
|
|
32
|
+
"application/json": {
|
|
33
|
+
"schema": {
|
|
34
|
+
"$ref": "#/components/schemas/WorksheetExcelSaveDTO"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"responses": {
|
|
40
|
+
"default": {
|
|
41
|
+
"description": "default response",
|
|
42
|
+
"content": {
|
|
43
|
+
"*/*": {}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"operationId": "update_4"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"path": "/api/v2/projects/{projectId}/worksheet-excel/{uuid}",
|
|
51
|
+
"method": "POST",
|
|
52
|
+
"summary": "Add worksheet Excel",
|
|
53
|
+
"description": "Add a new worksheet Excel file",
|
|
54
|
+
"tags": [],
|
|
55
|
+
"parameters": [
|
|
56
|
+
{
|
|
57
|
+
"name": "projectId",
|
|
58
|
+
"in": "path",
|
|
59
|
+
"required": true,
|
|
60
|
+
"schema": {
|
|
61
|
+
"type": "string"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "uuid",
|
|
66
|
+
"in": "path",
|
|
67
|
+
"required": true,
|
|
68
|
+
"schema": {
|
|
69
|
+
"type": "string"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"requestBody": {
|
|
74
|
+
"content": {
|
|
75
|
+
"application/json": {
|
|
76
|
+
"schema": {
|
|
77
|
+
"$ref": "#/components/schemas/WorksheetExcelSaveDTO"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"responses": {
|
|
83
|
+
"default": {
|
|
84
|
+
"description": "default response",
|
|
85
|
+
"content": {
|
|
86
|
+
"*/*": {}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"operationId": "add"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"path": "/api/v2/projects/{projectId}/worksheet-excel/{reportNoSimple}",
|
|
94
|
+
"method": "GET",
|
|
95
|
+
"summary": "Get worksheet Excel download link",
|
|
96
|
+
"description": "Retrieve download link for a worksheet Excel file",
|
|
97
|
+
"tags": [],
|
|
98
|
+
"parameters": [
|
|
99
|
+
{
|
|
100
|
+
"name": "projectId",
|
|
101
|
+
"in": "path",
|
|
102
|
+
"required": true,
|
|
103
|
+
"schema": {
|
|
104
|
+
"type": "string"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "reportNoSimple",
|
|
109
|
+
"in": "path",
|
|
110
|
+
"required": true,
|
|
111
|
+
"schema": {
|
|
112
|
+
"$ref": "#/components/schemas/ReportNoSetDTO"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"operationId": "getDownloadLink_1",
|
|
117
|
+
"responses": {
|
|
118
|
+
"default": {
|
|
119
|
+
"description": "default response",
|
|
120
|
+
"content": {
|
|
121
|
+
"*/*": {}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"path": "/api/v2/projects/{projectId}/worksheet-excel/{uuid}/metadata",
|
|
128
|
+
"method": "GET",
|
|
129
|
+
"summary": "Get worksheet Excel metadata",
|
|
130
|
+
"description": "Retrieve metadata for a worksheet Excel file",
|
|
131
|
+
"tags": [],
|
|
132
|
+
"parameters": [
|
|
133
|
+
{
|
|
134
|
+
"name": "projectId",
|
|
135
|
+
"in": "path",
|
|
136
|
+
"required": true,
|
|
137
|
+
"schema": {
|
|
138
|
+
"type": "string"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "uuid",
|
|
143
|
+
"in": "path",
|
|
144
|
+
"required": true,
|
|
145
|
+
"schema": {
|
|
146
|
+
"type": "string"
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
"operationId": "getMetadata",
|
|
151
|
+
"responses": {
|
|
152
|
+
"default": {
|
|
153
|
+
"description": "default response",
|
|
154
|
+
"content": {
|
|
155
|
+
"*/*": {}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
]
|
|
161
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"category": "Worksheets",
|
|
3
3
|
"version": "v2",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "Worksheet Management Operations",
|
|
5
5
|
"endpoints": [
|
|
6
6
|
{
|
|
7
7
|
"path": "/api/v2/projects/{projectId}/worksheets",
|
|
@@ -344,187 +344,6 @@
|
|
|
344
344
|
}
|
|
345
345
|
},
|
|
346
346
|
"operationId": "saveByFailureMode"
|
|
347
|
-
},
|
|
348
|
-
{
|
|
349
|
-
"path": "/api/v2/projects/{projectId}/worksheet-excel/{uuid}",
|
|
350
|
-
"method": "PUT",
|
|
351
|
-
"summary": "Update worksheet Excel",
|
|
352
|
-
"description": "Update an existing worksheet Excel file",
|
|
353
|
-
"tags": [],
|
|
354
|
-
"parameters": [
|
|
355
|
-
{
|
|
356
|
-
"name": "projectId",
|
|
357
|
-
"in": "path",
|
|
358
|
-
"required": true,
|
|
359
|
-
"schema": {
|
|
360
|
-
"type": "string"
|
|
361
|
-
}
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
"name": "uuid",
|
|
365
|
-
"in": "path",
|
|
366
|
-
"required": true,
|
|
367
|
-
"schema": {
|
|
368
|
-
"type": "string"
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
],
|
|
372
|
-
"requestBody": {
|
|
373
|
-
"content": {
|
|
374
|
-
"application/json": {
|
|
375
|
-
"schema": {
|
|
376
|
-
"$ref": "#/components/schemas/WorksheetExcelSaveDTO"
|
|
377
|
-
}
|
|
378
|
-
}
|
|
379
|
-
}
|
|
380
|
-
},
|
|
381
|
-
"responses": {
|
|
382
|
-
"default": {
|
|
383
|
-
"description": "default response",
|
|
384
|
-
"content": {
|
|
385
|
-
"*/*": {}
|
|
386
|
-
}
|
|
387
|
-
}
|
|
388
|
-
},
|
|
389
|
-
"operationId": "update_4"
|
|
390
|
-
},
|
|
391
|
-
{
|
|
392
|
-
"path": "/api/v2/projects/{projectId}/worksheet-excel/{uuid}",
|
|
393
|
-
"method": "POST",
|
|
394
|
-
"summary": "Add worksheet Excel",
|
|
395
|
-
"description": "Add a new worksheet Excel file",
|
|
396
|
-
"tags": [],
|
|
397
|
-
"parameters": [
|
|
398
|
-
{
|
|
399
|
-
"name": "projectId",
|
|
400
|
-
"in": "path",
|
|
401
|
-
"required": true,
|
|
402
|
-
"schema": {
|
|
403
|
-
"type": "string"
|
|
404
|
-
}
|
|
405
|
-
},
|
|
406
|
-
{
|
|
407
|
-
"name": "uuid",
|
|
408
|
-
"in": "path",
|
|
409
|
-
"required": true,
|
|
410
|
-
"schema": {
|
|
411
|
-
"type": "string"
|
|
412
|
-
}
|
|
413
|
-
}
|
|
414
|
-
],
|
|
415
|
-
"requestBody": {
|
|
416
|
-
"content": {
|
|
417
|
-
"application/json": {
|
|
418
|
-
"schema": {
|
|
419
|
-
"$ref": "#/components/schemas/WorksheetExcelSaveDTO"
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
}
|
|
423
|
-
},
|
|
424
|
-
"responses": {
|
|
425
|
-
"default": {
|
|
426
|
-
"description": "default response",
|
|
427
|
-
"content": {
|
|
428
|
-
"*/*": {}
|
|
429
|
-
}
|
|
430
|
-
}
|
|
431
|
-
},
|
|
432
|
-
"operationId": "add"
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
"path": "/api/v2/projects/{projectId}/worksheet-excel/{reportNoSimple}",
|
|
436
|
-
"method": "GET",
|
|
437
|
-
"summary": "Get worksheet Excel download link",
|
|
438
|
-
"description": "Retrieve download link for a worksheet Excel file",
|
|
439
|
-
"tags": [],
|
|
440
|
-
"parameters": [
|
|
441
|
-
{
|
|
442
|
-
"name": "projectId",
|
|
443
|
-
"in": "path",
|
|
444
|
-
"required": true,
|
|
445
|
-
"schema": {
|
|
446
|
-
"type": "string"
|
|
447
|
-
}
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
"name": "reportNoSimple",
|
|
451
|
-
"in": "path",
|
|
452
|
-
"required": true,
|
|
453
|
-
"schema": {
|
|
454
|
-
"$ref": "#/components/schemas/ReportNoSetDTO"
|
|
455
|
-
}
|
|
456
|
-
}
|
|
457
|
-
],
|
|
458
|
-
"operationId": "getDownloadLink_1",
|
|
459
|
-
"responses": {
|
|
460
|
-
"default": {
|
|
461
|
-
"description": "default response",
|
|
462
|
-
"content": {
|
|
463
|
-
"*/*": {}
|
|
464
|
-
}
|
|
465
|
-
}
|
|
466
|
-
}
|
|
467
|
-
},
|
|
468
|
-
{
|
|
469
|
-
"path": "/api/v2/projects/{projectId}/worksheet-excel/{uuid}/metadata",
|
|
470
|
-
"method": "GET",
|
|
471
|
-
"summary": "Get worksheet Excel metadata",
|
|
472
|
-
"description": "Retrieve metadata for a worksheet Excel file",
|
|
473
|
-
"tags": [],
|
|
474
|
-
"parameters": [
|
|
475
|
-
{
|
|
476
|
-
"name": "projectId",
|
|
477
|
-
"in": "path",
|
|
478
|
-
"required": true,
|
|
479
|
-
"schema": {
|
|
480
|
-
"type": "string"
|
|
481
|
-
}
|
|
482
|
-
},
|
|
483
|
-
{
|
|
484
|
-
"name": "uuid",
|
|
485
|
-
"in": "path",
|
|
486
|
-
"required": true,
|
|
487
|
-
"schema": {
|
|
488
|
-
"type": "string"
|
|
489
|
-
}
|
|
490
|
-
}
|
|
491
|
-
],
|
|
492
|
-
"operationId": "getMetadata",
|
|
493
|
-
"responses": {
|
|
494
|
-
"default": {
|
|
495
|
-
"description": "default response",
|
|
496
|
-
"content": {
|
|
497
|
-
"*/*": {}
|
|
498
|
-
}
|
|
499
|
-
}
|
|
500
|
-
}
|
|
501
|
-
},
|
|
502
|
-
{
|
|
503
|
-
"path": "/api/v2/worksheet-templates/{id}/headers",
|
|
504
|
-
"method": "GET",
|
|
505
|
-
"summary": "Get worksheet template headers",
|
|
506
|
-
"description": "Retrieve headers for a specific worksheet template",
|
|
507
|
-
"tags": [],
|
|
508
|
-
"parameters": [
|
|
509
|
-
{
|
|
510
|
-
"name": "id",
|
|
511
|
-
"in": "path",
|
|
512
|
-
"required": true,
|
|
513
|
-
"schema": {
|
|
514
|
-
"type": "integer",
|
|
515
|
-
"format": "int32"
|
|
516
|
-
}
|
|
517
|
-
}
|
|
518
|
-
],
|
|
519
|
-
"operationId": "getHeaders_1",
|
|
520
|
-
"responses": {
|
|
521
|
-
"default": {
|
|
522
|
-
"description": "default response",
|
|
523
|
-
"content": {
|
|
524
|
-
"application/json": {}
|
|
525
|
-
}
|
|
526
|
-
}
|
|
527
|
-
}
|
|
528
347
|
}
|
|
529
348
|
]
|
|
530
|
-
}
|
|
349
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"category": "Worksheets",
|
|
3
|
+
"version": "v2",
|
|
4
|
+
"description": "Worksheet Template Operations",
|
|
5
|
+
"endpoints": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/api/v2/worksheet-templates/{id}/headers",
|
|
8
|
+
"method": "GET",
|
|
9
|
+
"summary": "Get worksheet template headers",
|
|
10
|
+
"description": "Retrieve headers for a specific worksheet template",
|
|
11
|
+
"tags": [],
|
|
12
|
+
"parameters": [
|
|
13
|
+
{
|
|
14
|
+
"name": "id",
|
|
15
|
+
"in": "path",
|
|
16
|
+
"required": true,
|
|
17
|
+
"schema": {
|
|
18
|
+
"type": "integer",
|
|
19
|
+
"format": "int32"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"operationId": "getHeaders_1",
|
|
24
|
+
"responses": {
|
|
25
|
+
"default": {
|
|
26
|
+
"description": "default response",
|
|
27
|
+
"content": {
|
|
28
|
+
"application/json": {}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
}
|