fmea-api-mcp-server 1.1.37 → 1.1.38

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.
@@ -73,6 +73,683 @@
73
73
  }
74
74
  }
75
75
  }
76
+ },
77
+ {
78
+ "path": "/api/v2/system/settings",
79
+ "method": "GET",
80
+ "operationId": "getSettings",
81
+ "summary": "Get system settings",
82
+ "description": "Returns all system settings grouped into 13 categories. Requires admin permission. Mail password is always excluded from the response.",
83
+ "tags": [
84
+ "System Settings"
85
+ ],
86
+ "parameters": [],
87
+ "requestBody": null,
88
+ "responses": {
89
+ "default": {
90
+ "description": "default response",
91
+ "content": {
92
+ "application/json": {
93
+ "schema": {
94
+ "type": "object",
95
+ "properties": {
96
+ "company": {
97
+ "type": "object",
98
+ "properties": {
99
+ "name": {
100
+ "type": "string"
101
+ }
102
+ }
103
+ },
104
+ "scoring": {
105
+ "type": "object",
106
+ "properties": {
107
+ "enabled": {
108
+ "type": "boolean"
109
+ },
110
+ "threshold": {
111
+ "type": "integer"
112
+ },
113
+ "alwaysEnabled": {
114
+ "type": "boolean"
115
+ }
116
+ }
117
+ },
118
+ "projectPeriod": {
119
+ "type": "object",
120
+ "properties": {
121
+ "createLimitEnabled": {
122
+ "type": "boolean"
123
+ },
124
+ "createLimitDays": {
125
+ "type": "integer"
126
+ },
127
+ "modifyLimitEnabled": {
128
+ "type": "boolean"
129
+ },
130
+ "modifyLimitDays": {
131
+ "type": "integer"
132
+ }
133
+ }
134
+ },
135
+ "fmCheckprint": {
136
+ "type": "object",
137
+ "properties": {
138
+ "enabled": {
139
+ "type": "boolean"
140
+ },
141
+ "designEnabled": {
142
+ "type": "boolean"
143
+ },
144
+ "processEnabled": {
145
+ "type": "boolean"
146
+ },
147
+ "equipmentEnabled": {
148
+ "type": "boolean"
149
+ }
150
+ }
151
+ },
152
+ "fmmDisplay": {
153
+ "type": "object",
154
+ "properties": {
155
+ "showCreationInfo": {
156
+ "type": "boolean"
157
+ },
158
+ "highlightNewFailureModes": {
159
+ "type": "boolean"
160
+ },
161
+ "useBfmmType": {
162
+ "type": "boolean"
163
+ }
164
+ }
165
+ },
166
+ "security": {
167
+ "type": "object",
168
+ "properties": {
169
+ "forcePasswordChangeOnFirstLogin": {
170
+ "type": "boolean"
171
+ },
172
+ "enforcePasswordComplexity": {
173
+ "type": "boolean"
174
+ },
175
+ "restrictCommonSequences": {
176
+ "type": "boolean"
177
+ },
178
+ "preventPasswordReuse": {
179
+ "type": "boolean"
180
+ },
181
+ "enforcePasswordExpiration": {
182
+ "type": "boolean"
183
+ },
184
+ "passwordExpirationDays": {
185
+ "type": "integer"
186
+ },
187
+ "maxLoginFailures": {
188
+ "type": "integer"
189
+ }
190
+ }
191
+ },
192
+ "mail": {
193
+ "type": "object",
194
+ "properties": {
195
+ "enabled": {
196
+ "type": "boolean"
197
+ },
198
+ "host": {
199
+ "type": "string"
200
+ },
201
+ "port": {
202
+ "type": "string"
203
+ },
204
+ "username": {
205
+ "type": "string"
206
+ },
207
+ "password": {
208
+ "type": "string"
209
+ },
210
+ "senderAddress": {
211
+ "type": "string"
212
+ },
213
+ "rpnThreshold": {
214
+ "type": "integer"
215
+ }
216
+ }
217
+ },
218
+ "serverUrl": {
219
+ "type": "object",
220
+ "properties": {
221
+ "protocol": {
222
+ "type": "string"
223
+ },
224
+ "host": {
225
+ "type": "string"
226
+ }
227
+ }
228
+ },
229
+ "projectManagement": {
230
+ "type": "object",
231
+ "properties": {
232
+ "defaultApprovalOnCompletion": {
233
+ "type": "boolean"
234
+ },
235
+ "restrictEditAfterApproval": {
236
+ "type": "boolean"
237
+ }
238
+ }
239
+ },
240
+ "validationApproval": {
241
+ "type": "object",
242
+ "properties": {
243
+ "enabled": {
244
+ "type": "boolean"
245
+ },
246
+ "checkEmptyRecommendedAction": {
247
+ "type": "boolean"
248
+ },
249
+ "checkEmptyDetectionAction": {
250
+ "type": "boolean"
251
+ },
252
+ "notifyFollowUpAssignees": {
253
+ "type": "boolean"
254
+ },
255
+ "checkRpnThreshold": {
256
+ "type": "boolean"
257
+ },
258
+ "checkUnresolvedHighItems": {
259
+ "type": "boolean"
260
+ }
261
+ }
262
+ },
263
+ "revisionEditing": {
264
+ "type": "object",
265
+ "properties": {
266
+ "enabled": {
267
+ "type": "boolean"
268
+ },
269
+ "allowRevisionNumberEdit": {
270
+ "type": "boolean"
271
+ },
272
+ "allowRevisionDateEdit": {
273
+ "type": "boolean"
274
+ },
275
+ "allowRevisionReasonEdit": {
276
+ "type": "boolean"
277
+ }
278
+ }
279
+ },
280
+ "reviewer": {
281
+ "type": "object",
282
+ "properties": {
283
+ "checkReviewerEnabled": {
284
+ "type": "boolean"
285
+ }
286
+ }
287
+ },
288
+ "blankText": {
289
+ "type": "object",
290
+ "properties": {
291
+ "texts": {
292
+ "type": "array",
293
+ "items": {
294
+ "type": "string"
295
+ }
296
+ }
297
+ }
298
+ }
299
+ }
300
+ }
301
+ }
302
+ }
303
+ }
304
+ }
305
+ },
306
+ {
307
+ "path": "/api/v2/system/settings",
308
+ "method": "PUT",
309
+ "operationId": "updateSettings",
310
+ "summary": "Update system settings",
311
+ "description": "Updates system settings with partial merge at group level. Only groups included in the request body are updated. Null groups are skipped. Mail password null means keep existing value. Returns the complete settings after update.",
312
+ "tags": [
313
+ "System Settings"
314
+ ],
315
+ "parameters": [],
316
+ "requestBody": {
317
+ "content": {
318
+ "application/json": {
319
+ "schema": {
320
+ "type": "object",
321
+ "properties": {
322
+ "company": {
323
+ "type": "object",
324
+ "properties": {
325
+ "name": {
326
+ "type": "string"
327
+ }
328
+ }
329
+ },
330
+ "scoring": {
331
+ "type": "object",
332
+ "properties": {
333
+ "enabled": {
334
+ "type": "boolean"
335
+ },
336
+ "threshold": {
337
+ "type": "integer",
338
+ "format": "int32"
339
+ },
340
+ "alwaysEnabled": {
341
+ "type": "boolean"
342
+ }
343
+ }
344
+ },
345
+ "projectPeriod": {
346
+ "type": "object",
347
+ "properties": {
348
+ "createLimitEnabled": {
349
+ "type": "boolean"
350
+ },
351
+ "createLimitDays": {
352
+ "type": "integer",
353
+ "format": "int32"
354
+ },
355
+ "modifyLimitEnabled": {
356
+ "type": "boolean"
357
+ },
358
+ "modifyLimitDays": {
359
+ "type": "integer",
360
+ "format": "int32"
361
+ }
362
+ }
363
+ },
364
+ "fmCheckprint": {
365
+ "type": "object",
366
+ "properties": {
367
+ "enabled": {
368
+ "type": "boolean"
369
+ },
370
+ "designEnabled": {
371
+ "type": "boolean"
372
+ },
373
+ "processEnabled": {
374
+ "type": "boolean"
375
+ },
376
+ "equipmentEnabled": {
377
+ "type": "boolean"
378
+ }
379
+ }
380
+ },
381
+ "fmmDisplay": {
382
+ "type": "object",
383
+ "properties": {
384
+ "showCreationInfo": {
385
+ "type": "boolean"
386
+ },
387
+ "highlightNewFailureModes": {
388
+ "type": "boolean"
389
+ },
390
+ "useBfmmType": {
391
+ "type": "boolean"
392
+ }
393
+ }
394
+ },
395
+ "security": {
396
+ "type": "object",
397
+ "properties": {
398
+ "forcePasswordChangeOnFirstLogin": {
399
+ "type": "boolean"
400
+ },
401
+ "enforcePasswordComplexity": {
402
+ "type": "boolean"
403
+ },
404
+ "restrictCommonSequences": {
405
+ "type": "boolean"
406
+ },
407
+ "preventPasswordReuse": {
408
+ "type": "boolean"
409
+ },
410
+ "enforcePasswordExpiration": {
411
+ "type": "boolean"
412
+ },
413
+ "passwordExpirationDays": {
414
+ "type": "integer",
415
+ "format": "int32"
416
+ },
417
+ "maxLoginFailures": {
418
+ "type": "integer",
419
+ "format": "int32"
420
+ }
421
+ }
422
+ },
423
+ "mail": {
424
+ "type": "object",
425
+ "properties": {
426
+ "enabled": {
427
+ "type": "boolean"
428
+ },
429
+ "host": {
430
+ "type": "string"
431
+ },
432
+ "port": {
433
+ "type": "string"
434
+ },
435
+ "username": {
436
+ "type": "string"
437
+ },
438
+ "password": {
439
+ "type": "string"
440
+ },
441
+ "senderAddress": {
442
+ "type": "string"
443
+ },
444
+ "rpnThreshold": {
445
+ "type": "integer",
446
+ "format": "int32"
447
+ }
448
+ }
449
+ },
450
+ "serverUrl": {
451
+ "type": "object",
452
+ "properties": {
453
+ "protocol": {
454
+ "type": "string"
455
+ },
456
+ "host": {
457
+ "type": "string"
458
+ }
459
+ }
460
+ },
461
+ "projectManagement": {
462
+ "type": "object",
463
+ "properties": {
464
+ "defaultApprovalOnCompletion": {
465
+ "type": "boolean"
466
+ },
467
+ "restrictEditAfterApproval": {
468
+ "type": "boolean"
469
+ }
470
+ }
471
+ },
472
+ "validationApproval": {
473
+ "type": "object",
474
+ "properties": {
475
+ "enabled": {
476
+ "type": "boolean"
477
+ },
478
+ "checkEmptyRecommendedAction": {
479
+ "type": "boolean"
480
+ },
481
+ "checkEmptyDetectionAction": {
482
+ "type": "boolean"
483
+ },
484
+ "notifyFollowUpAssignees": {
485
+ "type": "boolean"
486
+ },
487
+ "checkRpnThreshold": {
488
+ "type": "boolean"
489
+ },
490
+ "checkUnresolvedHighItems": {
491
+ "type": "boolean"
492
+ }
493
+ }
494
+ },
495
+ "revisionEditing": {
496
+ "type": "object",
497
+ "properties": {
498
+ "enabled": {
499
+ "type": "boolean"
500
+ },
501
+ "allowRevisionNumberEdit": {
502
+ "type": "boolean"
503
+ },
504
+ "allowRevisionDateEdit": {
505
+ "type": "boolean"
506
+ },
507
+ "allowRevisionReasonEdit": {
508
+ "type": "boolean"
509
+ }
510
+ }
511
+ },
512
+ "reviewer": {
513
+ "type": "object",
514
+ "properties": {
515
+ "checkReviewerEnabled": {
516
+ "type": "boolean"
517
+ }
518
+ }
519
+ },
520
+ "blankText": {
521
+ "type": "object",
522
+ "properties": {
523
+ "texts": {
524
+ "type": "array",
525
+ "items": {
526
+ "type": "string"
527
+ }
528
+ }
529
+ }
530
+ }
531
+ }
532
+ }
533
+ }
534
+ }
535
+ },
536
+ "responses": {
537
+ "default": {
538
+ "description": "default response",
539
+ "content": {
540
+ "application/json": {
541
+ "schema": {
542
+ "type": "object",
543
+ "properties": {
544
+ "company": {
545
+ "type": "object",
546
+ "properties": {
547
+ "name": {
548
+ "type": "string"
549
+ }
550
+ }
551
+ },
552
+ "scoring": {
553
+ "type": "object",
554
+ "properties": {
555
+ "enabled": {
556
+ "type": "boolean"
557
+ },
558
+ "threshold": {
559
+ "type": "integer"
560
+ },
561
+ "alwaysEnabled": {
562
+ "type": "boolean"
563
+ }
564
+ }
565
+ },
566
+ "projectPeriod": {
567
+ "type": "object",
568
+ "properties": {
569
+ "createLimitEnabled": {
570
+ "type": "boolean"
571
+ },
572
+ "createLimitDays": {
573
+ "type": "integer"
574
+ },
575
+ "modifyLimitEnabled": {
576
+ "type": "boolean"
577
+ },
578
+ "modifyLimitDays": {
579
+ "type": "integer"
580
+ }
581
+ }
582
+ },
583
+ "fmCheckprint": {
584
+ "type": "object",
585
+ "properties": {
586
+ "enabled": {
587
+ "type": "boolean"
588
+ },
589
+ "designEnabled": {
590
+ "type": "boolean"
591
+ },
592
+ "processEnabled": {
593
+ "type": "boolean"
594
+ },
595
+ "equipmentEnabled": {
596
+ "type": "boolean"
597
+ }
598
+ }
599
+ },
600
+ "fmmDisplay": {
601
+ "type": "object",
602
+ "properties": {
603
+ "showCreationInfo": {
604
+ "type": "boolean"
605
+ },
606
+ "highlightNewFailureModes": {
607
+ "type": "boolean"
608
+ },
609
+ "useBfmmType": {
610
+ "type": "boolean"
611
+ }
612
+ }
613
+ },
614
+ "security": {
615
+ "type": "object",
616
+ "properties": {
617
+ "forcePasswordChangeOnFirstLogin": {
618
+ "type": "boolean"
619
+ },
620
+ "enforcePasswordComplexity": {
621
+ "type": "boolean"
622
+ },
623
+ "restrictCommonSequences": {
624
+ "type": "boolean"
625
+ },
626
+ "preventPasswordReuse": {
627
+ "type": "boolean"
628
+ },
629
+ "enforcePasswordExpiration": {
630
+ "type": "boolean"
631
+ },
632
+ "passwordExpirationDays": {
633
+ "type": "integer"
634
+ },
635
+ "maxLoginFailures": {
636
+ "type": "integer"
637
+ }
638
+ }
639
+ },
640
+ "mail": {
641
+ "type": "object",
642
+ "properties": {
643
+ "enabled": {
644
+ "type": "boolean"
645
+ },
646
+ "host": {
647
+ "type": "string"
648
+ },
649
+ "port": {
650
+ "type": "string"
651
+ },
652
+ "username": {
653
+ "type": "string"
654
+ },
655
+ "password": {
656
+ "type": "string"
657
+ },
658
+ "senderAddress": {
659
+ "type": "string"
660
+ },
661
+ "rpnThreshold": {
662
+ "type": "integer"
663
+ }
664
+ }
665
+ },
666
+ "serverUrl": {
667
+ "type": "object",
668
+ "properties": {
669
+ "protocol": {
670
+ "type": "string"
671
+ },
672
+ "host": {
673
+ "type": "string"
674
+ }
675
+ }
676
+ },
677
+ "projectManagement": {
678
+ "type": "object",
679
+ "properties": {
680
+ "defaultApprovalOnCompletion": {
681
+ "type": "boolean"
682
+ },
683
+ "restrictEditAfterApproval": {
684
+ "type": "boolean"
685
+ }
686
+ }
687
+ },
688
+ "validationApproval": {
689
+ "type": "object",
690
+ "properties": {
691
+ "enabled": {
692
+ "type": "boolean"
693
+ },
694
+ "checkEmptyRecommendedAction": {
695
+ "type": "boolean"
696
+ },
697
+ "checkEmptyDetectionAction": {
698
+ "type": "boolean"
699
+ },
700
+ "notifyFollowUpAssignees": {
701
+ "type": "boolean"
702
+ },
703
+ "checkRpnThreshold": {
704
+ "type": "boolean"
705
+ },
706
+ "checkUnresolvedHighItems": {
707
+ "type": "boolean"
708
+ }
709
+ }
710
+ },
711
+ "revisionEditing": {
712
+ "type": "object",
713
+ "properties": {
714
+ "enabled": {
715
+ "type": "boolean"
716
+ },
717
+ "allowRevisionNumberEdit": {
718
+ "type": "boolean"
719
+ },
720
+ "allowRevisionDateEdit": {
721
+ "type": "boolean"
722
+ },
723
+ "allowRevisionReasonEdit": {
724
+ "type": "boolean"
725
+ }
726
+ }
727
+ },
728
+ "reviewer": {
729
+ "type": "object",
730
+ "properties": {
731
+ "checkReviewerEnabled": {
732
+ "type": "boolean"
733
+ }
734
+ }
735
+ },
736
+ "blankText": {
737
+ "type": "object",
738
+ "properties": {
739
+ "texts": {
740
+ "type": "array",
741
+ "items": {
742
+ "type": "string"
743
+ }
744
+ }
745
+ }
746
+ }
747
+ }
748
+ }
749
+ }
750
+ }
751
+ }
752
+ }
76
753
  }
77
754
  ]
78
755
  }