fmea-api-mcp-server 1.1.57 → 1.1.59
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/enums.json +1 -1
- package/dist/index.js +1 -1
- package/endpoints/v2/auth/core.json +6 -6
- 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/files/core.json +0 -6
- package/endpoints/v2/projects/core.json +82 -11
- package/endpoints/v2/recommendation-items/core.json +10 -1
- package/endpoints/v2/revisions/core.json +12 -4
- package/endpoints/v2/tree-search/core.json +285 -16
- package/endpoints/v2/users/core.json +12 -4
- package/endpoints/v2/worksheets/core.json +65 -0
- package/endpoints/v2/worksheets/excel.json +10 -7
- 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"
|
|
@@ -160,9 +163,6 @@
|
|
|
160
163
|
}
|
|
161
164
|
}
|
|
162
165
|
}
|
|
163
|
-
},
|
|
164
|
-
"encryptedPassword": {
|
|
165
|
-
"type": "string"
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
}
|
|
@@ -336,6 +336,9 @@
|
|
|
336
336
|
"READER"
|
|
337
337
|
]
|
|
338
338
|
},
|
|
339
|
+
"activeYN": {
|
|
340
|
+
"type": "string"
|
|
341
|
+
},
|
|
339
342
|
"creationDate": {
|
|
340
343
|
"type": "string",
|
|
341
344
|
"format": "date-time"
|
|
@@ -366,9 +369,6 @@
|
|
|
366
369
|
}
|
|
367
370
|
}
|
|
368
371
|
}
|
|
369
|
-
},
|
|
370
|
-
"encryptedPassword": {
|
|
371
|
-
"type": "string"
|
|
372
372
|
}
|
|
373
373
|
}
|
|
374
374
|
}
|
|
@@ -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": {
|
|
@@ -1392,7 +1436,16 @@
|
|
|
1392
1436
|
"enum": [
|
|
1393
1437
|
"IN_PROGRESS",
|
|
1394
1438
|
"REFUSED",
|
|
1395
|
-
"SELF_COMPLETED"
|
|
1439
|
+
"SELF_COMPLETED",
|
|
1440
|
+
"REVIEW",
|
|
1441
|
+
"APPROVE",
|
|
1442
|
+
"SCORE",
|
|
1443
|
+
"COMPLETED",
|
|
1444
|
+
"ASK_MODIFY_REVIEW",
|
|
1445
|
+
"ASK_MODIFY_APPROVE",
|
|
1446
|
+
"DELAY",
|
|
1447
|
+
"NA",
|
|
1448
|
+
"CAN_MODIFY"
|
|
1396
1449
|
]
|
|
1397
1450
|
},
|
|
1398
1451
|
"divisionId": {
|
|
@@ -1622,7 +1675,16 @@
|
|
|
1622
1675
|
"enum": [
|
|
1623
1676
|
"IN_PROGRESS",
|
|
1624
1677
|
"REFUSED",
|
|
1625
|
-
"SELF_COMPLETED"
|
|
1678
|
+
"SELF_COMPLETED",
|
|
1679
|
+
"REVIEW",
|
|
1680
|
+
"APPROVE",
|
|
1681
|
+
"SCORE",
|
|
1682
|
+
"COMPLETED",
|
|
1683
|
+
"ASK_MODIFY_REVIEW",
|
|
1684
|
+
"ASK_MODIFY_APPROVE",
|
|
1685
|
+
"DELAY",
|
|
1686
|
+
"NA",
|
|
1687
|
+
"CAN_MODIFY"
|
|
1626
1688
|
]
|
|
1627
1689
|
},
|
|
1628
1690
|
"completedDate": {
|
|
@@ -1843,7 +1905,16 @@
|
|
|
1843
1905
|
"enum": [
|
|
1844
1906
|
"IN_PROGRESS",
|
|
1845
1907
|
"REFUSED",
|
|
1846
|
-
"SELF_COMPLETED"
|
|
1908
|
+
"SELF_COMPLETED",
|
|
1909
|
+
"REVIEW",
|
|
1910
|
+
"APPROVE",
|
|
1911
|
+
"SCORE",
|
|
1912
|
+
"COMPLETED",
|
|
1913
|
+
"ASK_MODIFY_REVIEW",
|
|
1914
|
+
"ASK_MODIFY_APPROVE",
|
|
1915
|
+
"DELAY",
|
|
1916
|
+
"NA",
|
|
1917
|
+
"CAN_MODIFY"
|
|
1847
1918
|
]
|
|
1848
1919
|
},
|
|
1849
1920
|
"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": {
|