fmea-api-mcp-server 1.1.56 → 1.1.58
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/next.json +45 -51
- package/data/endpoint-lookup.json +1 -1
- package/data/enums.json +1 -1
- package/dist/index.js +1 -1
- package/endpoints/v2/auth/core.json +6 -0
- package/endpoints/v2/block-diagrams/core.json +63 -0
- package/endpoints/v2/condition-library/core.json +21 -0
- package/endpoints/v2/documents/core.json +10 -5
- package/endpoints/v2/failure-modes/core.json +16 -0
- package/endpoints/v2/projects/core.json +88 -11
- package/endpoints/v2/recommendation-items/core.json +10 -1
- package/endpoints/v2/revisions/core.json +12 -4
- package/endpoints/v2/search/core.json +2 -2
- package/endpoints/v2/tree-search/core.json +285 -10
- package/endpoints/v2/users/core.json +12 -4
- package/endpoints/v2/worksheets/core.json +65 -0
- package/endpoints/v2/worksheets/excel.json +12 -0
- package/endpoints/v2/worksheets/management.json +45 -0
- package/package.json +1 -1
package/data/enums.json
CHANGED
package/dist/index.js
CHANGED
|
@@ -130,6 +130,9 @@
|
|
|
130
130
|
"READER"
|
|
131
131
|
]
|
|
132
132
|
},
|
|
133
|
+
"activeYN": {
|
|
134
|
+
"type": "string"
|
|
135
|
+
},
|
|
133
136
|
"creationDate": {
|
|
134
137
|
"type": "string",
|
|
135
138
|
"format": "date-time"
|
|
@@ -336,6 +339,9 @@
|
|
|
336
339
|
"READER"
|
|
337
340
|
]
|
|
338
341
|
},
|
|
342
|
+
"activeYN": {
|
|
343
|
+
"type": "string"
|
|
344
|
+
},
|
|
339
345
|
"creationDate": {
|
|
340
346
|
"type": "string",
|
|
341
347
|
"format": "date-time"
|
|
@@ -164,9 +164,14 @@
|
|
|
164
164
|
"type": {
|
|
165
165
|
"type": "string",
|
|
166
166
|
"enum": [
|
|
167
|
+
"FUNCTION",
|
|
168
|
+
"PART",
|
|
167
169
|
"SUB_FUNCTION",
|
|
170
|
+
"ASSEMBLY",
|
|
168
171
|
"NEW_CHANGE_ASSEMBLY",
|
|
169
172
|
"NEW_CHANGE_PART",
|
|
173
|
+
"NEW_CHANGE_PROCESS",
|
|
174
|
+
"SUPER_SYSTEM",
|
|
170
175
|
"TARGET"
|
|
171
176
|
]
|
|
172
177
|
},
|
|
@@ -395,9 +400,14 @@
|
|
|
395
400
|
"type": {
|
|
396
401
|
"type": "string",
|
|
397
402
|
"enum": [
|
|
403
|
+
"FUNCTION",
|
|
404
|
+
"PART",
|
|
398
405
|
"SUB_FUNCTION",
|
|
406
|
+
"ASSEMBLY",
|
|
399
407
|
"NEW_CHANGE_ASSEMBLY",
|
|
400
408
|
"NEW_CHANGE_PART",
|
|
409
|
+
"NEW_CHANGE_PROCESS",
|
|
410
|
+
"SUPER_SYSTEM",
|
|
401
411
|
"TARGET"
|
|
402
412
|
]
|
|
403
413
|
},
|
|
@@ -412,6 +422,54 @@
|
|
|
412
422
|
},
|
|
413
423
|
"processFlowChartSymbol": {
|
|
414
424
|
"type": "string"
|
|
425
|
+
},
|
|
426
|
+
"failureModes": {
|
|
427
|
+
"type": "array",
|
|
428
|
+
"items": {
|
|
429
|
+
"type": "object",
|
|
430
|
+
"properties": {
|
|
431
|
+
"blockNodeId": {
|
|
432
|
+
"type": "string"
|
|
433
|
+
},
|
|
434
|
+
"referencedBlockNodeId": {
|
|
435
|
+
"type": "string"
|
|
436
|
+
},
|
|
437
|
+
"id": {
|
|
438
|
+
"type": "string"
|
|
439
|
+
},
|
|
440
|
+
"name": {
|
|
441
|
+
"type": "string"
|
|
442
|
+
},
|
|
443
|
+
"fmmDiagramType": {
|
|
444
|
+
"type": "string",
|
|
445
|
+
"enum": [
|
|
446
|
+
"UNUSED",
|
|
447
|
+
"NOT_SELECTED",
|
|
448
|
+
"TYPE_A",
|
|
449
|
+
"TYPE_C"
|
|
450
|
+
]
|
|
451
|
+
},
|
|
452
|
+
"rank": {
|
|
453
|
+
"type": "string"
|
|
454
|
+
},
|
|
455
|
+
"complete": {
|
|
456
|
+
"type": "string"
|
|
457
|
+
},
|
|
458
|
+
"transferFmmObject": {
|
|
459
|
+
"type": "integer"
|
|
460
|
+
},
|
|
461
|
+
"linked": {
|
|
462
|
+
"type": "boolean"
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
},
|
|
467
|
+
"children": {
|
|
468
|
+
"type": "array",
|
|
469
|
+
"items": {
|
|
470
|
+
"type": "object",
|
|
471
|
+
"description": "(circular: BlockNodeTreeDTO)"
|
|
472
|
+
}
|
|
415
473
|
}
|
|
416
474
|
}
|
|
417
475
|
}
|
|
@@ -594,9 +652,14 @@
|
|
|
594
652
|
"type": {
|
|
595
653
|
"type": "string",
|
|
596
654
|
"enum": [
|
|
655
|
+
"FUNCTION",
|
|
656
|
+
"PART",
|
|
597
657
|
"SUB_FUNCTION",
|
|
658
|
+
"ASSEMBLY",
|
|
598
659
|
"NEW_CHANGE_ASSEMBLY",
|
|
599
660
|
"NEW_CHANGE_PART",
|
|
661
|
+
"NEW_CHANGE_PROCESS",
|
|
662
|
+
"SUPER_SYSTEM",
|
|
600
663
|
"TARGET"
|
|
601
664
|
]
|
|
602
665
|
},
|
|
@@ -103,6 +103,13 @@
|
|
|
103
103
|
},
|
|
104
104
|
"rank": {
|
|
105
105
|
"type": "integer"
|
|
106
|
+
},
|
|
107
|
+
"children": {
|
|
108
|
+
"type": "array",
|
|
109
|
+
"items": {
|
|
110
|
+
"type": "object",
|
|
111
|
+
"description": "(circular: ConditionLibraryTreeDTO)"
|
|
112
|
+
}
|
|
106
113
|
}
|
|
107
114
|
}
|
|
108
115
|
}
|
|
@@ -220,6 +227,13 @@
|
|
|
220
227
|
},
|
|
221
228
|
"rank": {
|
|
222
229
|
"type": "integer"
|
|
230
|
+
},
|
|
231
|
+
"children": {
|
|
232
|
+
"type": "array",
|
|
233
|
+
"items": {
|
|
234
|
+
"type": "object",
|
|
235
|
+
"description": "(circular: ConditionLibraryTreeDTO)"
|
|
236
|
+
}
|
|
223
237
|
}
|
|
224
238
|
}
|
|
225
239
|
}
|
|
@@ -270,6 +284,13 @@
|
|
|
270
284
|
},
|
|
271
285
|
"title": {
|
|
272
286
|
"type": "string"
|
|
287
|
+
},
|
|
288
|
+
"children": {
|
|
289
|
+
"type": "array",
|
|
290
|
+
"items": {
|
|
291
|
+
"type": "object",
|
|
292
|
+
"description": "(circular: ConditionLibraryChildItemDTO)"
|
|
293
|
+
}
|
|
273
294
|
}
|
|
274
295
|
}
|
|
275
296
|
}
|
|
@@ -55,7 +55,8 @@
|
|
|
55
55
|
"type": {
|
|
56
56
|
"type": "string",
|
|
57
57
|
"enum": [
|
|
58
|
-
"UPLOAD"
|
|
58
|
+
"UPLOAD",
|
|
59
|
+
"URL"
|
|
59
60
|
]
|
|
60
61
|
},
|
|
61
62
|
"value": {
|
|
@@ -164,7 +165,8 @@
|
|
|
164
165
|
"type": {
|
|
165
166
|
"type": "string",
|
|
166
167
|
"enum": [
|
|
167
|
-
"UPLOAD"
|
|
168
|
+
"UPLOAD",
|
|
169
|
+
"URL"
|
|
168
170
|
]
|
|
169
171
|
},
|
|
170
172
|
"value": {
|
|
@@ -241,7 +243,8 @@
|
|
|
241
243
|
"type": {
|
|
242
244
|
"type": "string",
|
|
243
245
|
"enum": [
|
|
244
|
-
"UPLOAD"
|
|
246
|
+
"UPLOAD",
|
|
247
|
+
"URL"
|
|
245
248
|
]
|
|
246
249
|
},
|
|
247
250
|
"value": {
|
|
@@ -402,7 +405,8 @@
|
|
|
402
405
|
"type": {
|
|
403
406
|
"type": "string",
|
|
404
407
|
"enum": [
|
|
405
|
-
"UPLOAD"
|
|
408
|
+
"UPLOAD",
|
|
409
|
+
"URL"
|
|
406
410
|
]
|
|
407
411
|
},
|
|
408
412
|
"value": {
|
|
@@ -496,7 +500,8 @@
|
|
|
496
500
|
"type": {
|
|
497
501
|
"type": "string",
|
|
498
502
|
"enum": [
|
|
499
|
-
"UPLOAD"
|
|
503
|
+
"UPLOAD",
|
|
504
|
+
"URL"
|
|
500
505
|
]
|
|
501
506
|
},
|
|
502
507
|
"value": {
|
|
@@ -577,6 +577,7 @@
|
|
|
577
577
|
"type": {
|
|
578
578
|
"type": "string",
|
|
579
579
|
"enum": [
|
|
580
|
+
"FAILURE_MODE",
|
|
580
581
|
"EFFECT",
|
|
581
582
|
"ITEM",
|
|
582
583
|
"EXTERNAL_ITEM",
|
|
@@ -608,6 +609,13 @@
|
|
|
608
609
|
},
|
|
609
610
|
"processType": {
|
|
610
611
|
"type": "string"
|
|
612
|
+
},
|
|
613
|
+
"children": {
|
|
614
|
+
"type": "array",
|
|
615
|
+
"items": {
|
|
616
|
+
"type": "object",
|
|
617
|
+
"description": "(circular: FMMObject)"
|
|
618
|
+
}
|
|
611
619
|
}
|
|
612
620
|
}
|
|
613
621
|
}
|
|
@@ -750,6 +758,7 @@
|
|
|
750
758
|
"type": {
|
|
751
759
|
"type": "string",
|
|
752
760
|
"enum": [
|
|
761
|
+
"FAILURE_MODE",
|
|
753
762
|
"EFFECT",
|
|
754
763
|
"ITEM",
|
|
755
764
|
"EXTERNAL_ITEM",
|
|
@@ -781,6 +790,13 @@
|
|
|
781
790
|
},
|
|
782
791
|
"processType": {
|
|
783
792
|
"type": "string"
|
|
793
|
+
},
|
|
794
|
+
"children": {
|
|
795
|
+
"type": "array",
|
|
796
|
+
"items": {
|
|
797
|
+
"type": "object",
|
|
798
|
+
"description": "(circular: FMMObject)"
|
|
799
|
+
}
|
|
784
800
|
}
|
|
785
801
|
}
|
|
786
802
|
}
|
|
@@ -200,7 +200,16 @@
|
|
|
200
200
|
"enum": [
|
|
201
201
|
"IN_PROGRESS",
|
|
202
202
|
"REFUSED",
|
|
203
|
-
"SELF_COMPLETED"
|
|
203
|
+
"SELF_COMPLETED",
|
|
204
|
+
"REVIEW",
|
|
205
|
+
"APPROVE",
|
|
206
|
+
"SCORE",
|
|
207
|
+
"COMPLETED",
|
|
208
|
+
"ASK_MODIFY_REVIEW",
|
|
209
|
+
"ASK_MODIFY_APPROVE",
|
|
210
|
+
"DELAY",
|
|
211
|
+
"NA",
|
|
212
|
+
"CAN_MODIFY"
|
|
204
213
|
]
|
|
205
214
|
},
|
|
206
215
|
"completedDate": {
|
|
@@ -407,7 +416,16 @@
|
|
|
407
416
|
"enum": [
|
|
408
417
|
"IN_PROGRESS",
|
|
409
418
|
"REFUSED",
|
|
410
|
-
"SELF_COMPLETED"
|
|
419
|
+
"SELF_COMPLETED",
|
|
420
|
+
"REVIEW",
|
|
421
|
+
"APPROVE",
|
|
422
|
+
"SCORE",
|
|
423
|
+
"COMPLETED",
|
|
424
|
+
"ASK_MODIFY_REVIEW",
|
|
425
|
+
"ASK_MODIFY_APPROVE",
|
|
426
|
+
"DELAY",
|
|
427
|
+
"NA",
|
|
428
|
+
"CAN_MODIFY"
|
|
411
429
|
]
|
|
412
430
|
},
|
|
413
431
|
"divisionId": {
|
|
@@ -580,7 +598,16 @@
|
|
|
580
598
|
"enum": [
|
|
581
599
|
"IN_PROGRESS",
|
|
582
600
|
"REFUSED",
|
|
583
|
-
"SELF_COMPLETED"
|
|
601
|
+
"SELF_COMPLETED",
|
|
602
|
+
"REVIEW",
|
|
603
|
+
"APPROVE",
|
|
604
|
+
"SCORE",
|
|
605
|
+
"COMPLETED",
|
|
606
|
+
"ASK_MODIFY_REVIEW",
|
|
607
|
+
"ASK_MODIFY_APPROVE",
|
|
608
|
+
"DELAY",
|
|
609
|
+
"NA",
|
|
610
|
+
"CAN_MODIFY"
|
|
584
611
|
]
|
|
585
612
|
},
|
|
586
613
|
"completedDate": {
|
|
@@ -702,7 +729,16 @@
|
|
|
702
729
|
"enum": [
|
|
703
730
|
"IN_PROGRESS",
|
|
704
731
|
"REFUSED",
|
|
705
|
-
"SELF_COMPLETED"
|
|
732
|
+
"SELF_COMPLETED",
|
|
733
|
+
"REVIEW",
|
|
734
|
+
"APPROVE",
|
|
735
|
+
"SCORE",
|
|
736
|
+
"COMPLETED",
|
|
737
|
+
"ASK_MODIFY_REVIEW",
|
|
738
|
+
"ASK_MODIFY_APPROVE",
|
|
739
|
+
"DELAY",
|
|
740
|
+
"NA",
|
|
741
|
+
"CAN_MODIFY"
|
|
706
742
|
]
|
|
707
743
|
},
|
|
708
744
|
"completedDate": {
|
|
@@ -943,10 +979,18 @@
|
|
|
943
979
|
"actionCode": {
|
|
944
980
|
"type": "string",
|
|
945
981
|
"enum": [
|
|
946
|
-
"
|
|
947
|
-
"
|
|
948
|
-
"
|
|
949
|
-
"
|
|
982
|
+
"CREATE_PROJECT",
|
|
983
|
+
"MODIFY_PROJECT",
|
|
984
|
+
"DELETE_PROJECT",
|
|
985
|
+
"JOIN_REQUEST",
|
|
986
|
+
"JOIN_APPROVED",
|
|
987
|
+
"JOIN_REJECTED",
|
|
988
|
+
"CREATE",
|
|
989
|
+
"COPY",
|
|
990
|
+
"MODIFY",
|
|
991
|
+
"UPDATE",
|
|
992
|
+
"REVISE",
|
|
993
|
+
"DELETE"
|
|
950
994
|
]
|
|
951
995
|
},
|
|
952
996
|
"projectId": {
|
|
@@ -1242,6 +1286,12 @@
|
|
|
1242
1286
|
},
|
|
1243
1287
|
"systemRequirement": {
|
|
1244
1288
|
"type": "string"
|
|
1289
|
+
},
|
|
1290
|
+
"systemFunctionSet": {
|
|
1291
|
+
"type": "boolean"
|
|
1292
|
+
},
|
|
1293
|
+
"systemRequirementSet": {
|
|
1294
|
+
"type": "boolean"
|
|
1245
1295
|
}
|
|
1246
1296
|
}
|
|
1247
1297
|
}
|
|
@@ -1392,7 +1442,16 @@
|
|
|
1392
1442
|
"enum": [
|
|
1393
1443
|
"IN_PROGRESS",
|
|
1394
1444
|
"REFUSED",
|
|
1395
|
-
"SELF_COMPLETED"
|
|
1445
|
+
"SELF_COMPLETED",
|
|
1446
|
+
"REVIEW",
|
|
1447
|
+
"APPROVE",
|
|
1448
|
+
"SCORE",
|
|
1449
|
+
"COMPLETED",
|
|
1450
|
+
"ASK_MODIFY_REVIEW",
|
|
1451
|
+
"ASK_MODIFY_APPROVE",
|
|
1452
|
+
"DELAY",
|
|
1453
|
+
"NA",
|
|
1454
|
+
"CAN_MODIFY"
|
|
1396
1455
|
]
|
|
1397
1456
|
},
|
|
1398
1457
|
"divisionId": {
|
|
@@ -1622,7 +1681,16 @@
|
|
|
1622
1681
|
"enum": [
|
|
1623
1682
|
"IN_PROGRESS",
|
|
1624
1683
|
"REFUSED",
|
|
1625
|
-
"SELF_COMPLETED"
|
|
1684
|
+
"SELF_COMPLETED",
|
|
1685
|
+
"REVIEW",
|
|
1686
|
+
"APPROVE",
|
|
1687
|
+
"SCORE",
|
|
1688
|
+
"COMPLETED",
|
|
1689
|
+
"ASK_MODIFY_REVIEW",
|
|
1690
|
+
"ASK_MODIFY_APPROVE",
|
|
1691
|
+
"DELAY",
|
|
1692
|
+
"NA",
|
|
1693
|
+
"CAN_MODIFY"
|
|
1626
1694
|
]
|
|
1627
1695
|
},
|
|
1628
1696
|
"completedDate": {
|
|
@@ -1843,7 +1911,16 @@
|
|
|
1843
1911
|
"enum": [
|
|
1844
1912
|
"IN_PROGRESS",
|
|
1845
1913
|
"REFUSED",
|
|
1846
|
-
"SELF_COMPLETED"
|
|
1914
|
+
"SELF_COMPLETED",
|
|
1915
|
+
"REVIEW",
|
|
1916
|
+
"APPROVE",
|
|
1917
|
+
"SCORE",
|
|
1918
|
+
"COMPLETED",
|
|
1919
|
+
"ASK_MODIFY_REVIEW",
|
|
1920
|
+
"ASK_MODIFY_APPROVE",
|
|
1921
|
+
"DELAY",
|
|
1922
|
+
"NA",
|
|
1923
|
+
"CAN_MODIFY"
|
|
1847
1924
|
]
|
|
1848
1925
|
},
|
|
1849
1926
|
"completedDate": {
|
|
@@ -261,7 +261,16 @@
|
|
|
261
261
|
"enum": [
|
|
262
262
|
"IN_PROGRESS",
|
|
263
263
|
"REFUSED",
|
|
264
|
-
"SELF_COMPLETED"
|
|
264
|
+
"SELF_COMPLETED",
|
|
265
|
+
"REVIEW",
|
|
266
|
+
"APPROVE",
|
|
267
|
+
"SCORE",
|
|
268
|
+
"COMPLETED",
|
|
269
|
+
"ASK_MODIFY_REVIEW",
|
|
270
|
+
"ASK_MODIFY_APPROVE",
|
|
271
|
+
"DELAY",
|
|
272
|
+
"NA",
|
|
273
|
+
"CAN_MODIFY"
|
|
265
274
|
]
|
|
266
275
|
},
|
|
267
276
|
"completedDate": {
|
|
@@ -124,10 +124,18 @@
|
|
|
124
124
|
"actionCode": {
|
|
125
125
|
"type": "string",
|
|
126
126
|
"enum": [
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
127
|
+
"CREATE_PROJECT",
|
|
128
|
+
"MODIFY_PROJECT",
|
|
129
|
+
"DELETE_PROJECT",
|
|
130
|
+
"JOIN_REQUEST",
|
|
131
|
+
"JOIN_APPROVED",
|
|
132
|
+
"JOIN_REJECTED",
|
|
133
|
+
"CREATE",
|
|
134
|
+
"COPY",
|
|
135
|
+
"MODIFY",
|
|
136
|
+
"UPDATE",
|
|
137
|
+
"REVISE",
|
|
138
|
+
"DELETE"
|
|
131
139
|
]
|
|
132
140
|
},
|
|
133
141
|
"projectId": {
|
|
@@ -280,7 +280,7 @@
|
|
|
280
280
|
{
|
|
281
281
|
"name": "q",
|
|
282
282
|
"in": "query",
|
|
283
|
-
"description": "Search keyword for project title (max 100 characters)",
|
|
283
|
+
"description": "Search keyword for project title, item, model, or description (max 100 characters)",
|
|
284
284
|
"schema": {
|
|
285
285
|
"type": "string"
|
|
286
286
|
}
|
|
@@ -661,7 +661,7 @@
|
|
|
661
661
|
{
|
|
662
662
|
"name": "q",
|
|
663
663
|
"in": "query",
|
|
664
|
-
"description": "Search keyword for project title (max 100 characters)",
|
|
664
|
+
"description": "Search keyword for project title, item, model, or description (max 100 characters)",
|
|
665
665
|
"schema": {
|
|
666
666
|
"type": "string"
|
|
667
667
|
}
|