fmea-api-mcp-server 1.1.47 → 1.1.48
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/search-index.oxy +1 -1
- package/dist/index.js +1 -1
- package/endpoints/v2/additional-info/core.json +30 -6
- package/endpoints/v2/api-keys/core.json +7 -2
- package/endpoints/v2/block-diagrams/core.json +1 -1
- package/endpoints/v2/condition-library/core.json +4 -306
- package/endpoints/v2/condition-library-excel/core.json +1 -4
- package/endpoints/v2/documents/core.json +3 -3
- package/endpoints/v2/evaluation/core.json +158 -34
- package/endpoints/v2/projects/core.json +56 -8
- package/endpoints/v2/recommendation-items/core.json +16 -3
- package/endpoints/v2/search/core.json +119 -24
- package/endpoints/v2/system/core.json +6 -2
- package/endpoints/v2/system-definition/core.json +9 -3
- package/endpoints/v2/system-definition-excel/core.json +1 -1
- package/endpoints/v2/worksheet-templates/core.json +10 -2
- package/package.json +1 -1
|
@@ -24,9 +24,15 @@
|
|
|
24
24
|
{
|
|
25
25
|
"name": "scope",
|
|
26
26
|
"in": "query",
|
|
27
|
-
"description": "Search scope:
|
|
27
|
+
"description": "Search scope (default: my)",
|
|
28
28
|
"schema": {
|
|
29
|
-
"type": "string"
|
|
29
|
+
"type": "string",
|
|
30
|
+
"enum": [
|
|
31
|
+
"MY",
|
|
32
|
+
"DIVISION",
|
|
33
|
+
"ALL"
|
|
34
|
+
],
|
|
35
|
+
"default": "my"
|
|
30
36
|
}
|
|
31
37
|
},
|
|
32
38
|
{
|
|
@@ -48,17 +54,38 @@
|
|
|
48
54
|
{
|
|
49
55
|
"name": "fmeaType",
|
|
50
56
|
"in": "query",
|
|
51
|
-
"description": "FMEA type filter
|
|
57
|
+
"description": "FMEA type filter",
|
|
52
58
|
"schema": {
|
|
53
|
-
"type": "string"
|
|
59
|
+
"type": "string",
|
|
60
|
+
"enum": [
|
|
61
|
+
"DESIGN",
|
|
62
|
+
"PROCESS",
|
|
63
|
+
"EQUIPMENT",
|
|
64
|
+
"FA",
|
|
65
|
+
"FTA",
|
|
66
|
+
"CPLAN"
|
|
67
|
+
]
|
|
54
68
|
}
|
|
55
69
|
},
|
|
56
70
|
{
|
|
57
71
|
"name": "status",
|
|
58
72
|
"in": "query",
|
|
59
|
-
"description": "Project status filter
|
|
73
|
+
"description": "Project status filter",
|
|
60
74
|
"schema": {
|
|
61
|
-
"type": "string"
|
|
75
|
+
"type": "string",
|
|
76
|
+
"enum": [
|
|
77
|
+
"IN_PROGRESS",
|
|
78
|
+
"REFUSED",
|
|
79
|
+
"SELF_COMPLETED",
|
|
80
|
+
"REVIEW",
|
|
81
|
+
"APPROVE",
|
|
82
|
+
"SCORE",
|
|
83
|
+
"COMPLETED",
|
|
84
|
+
"ASK_MODIFY_REVIEW",
|
|
85
|
+
"ASK_MODIFY_APPROVE",
|
|
86
|
+
"DELAY",
|
|
87
|
+
"NA"
|
|
88
|
+
]
|
|
62
89
|
}
|
|
63
90
|
},
|
|
64
91
|
{
|
|
@@ -260,9 +287,15 @@
|
|
|
260
287
|
{
|
|
261
288
|
"name": "scope",
|
|
262
289
|
"in": "query",
|
|
263
|
-
"description": "Search scope:
|
|
290
|
+
"description": "Search scope (default: my)",
|
|
264
291
|
"schema": {
|
|
265
|
-
"type": "string"
|
|
292
|
+
"type": "string",
|
|
293
|
+
"enum": [
|
|
294
|
+
"MY",
|
|
295
|
+
"DIVISION",
|
|
296
|
+
"ALL"
|
|
297
|
+
],
|
|
298
|
+
"default": "my"
|
|
266
299
|
}
|
|
267
300
|
},
|
|
268
301
|
{
|
|
@@ -284,25 +317,51 @@
|
|
|
284
317
|
{
|
|
285
318
|
"name": "fmeaType",
|
|
286
319
|
"in": "query",
|
|
287
|
-
"description": "FMEA type filter
|
|
320
|
+
"description": "FMEA type filter",
|
|
288
321
|
"schema": {
|
|
289
|
-
"type": "string"
|
|
322
|
+
"type": "string",
|
|
323
|
+
"enum": [
|
|
324
|
+
"DESIGN",
|
|
325
|
+
"PROCESS",
|
|
326
|
+
"EQUIPMENT",
|
|
327
|
+
"FA",
|
|
328
|
+
"FTA",
|
|
329
|
+
"CPLAN"
|
|
330
|
+
]
|
|
290
331
|
}
|
|
291
332
|
},
|
|
292
333
|
{
|
|
293
334
|
"name": "status",
|
|
294
335
|
"in": "query",
|
|
295
|
-
"description": "Project status filter
|
|
336
|
+
"description": "Project status filter",
|
|
296
337
|
"schema": {
|
|
297
|
-
"type": "string"
|
|
338
|
+
"type": "string",
|
|
339
|
+
"enum": [
|
|
340
|
+
"IN_PROGRESS",
|
|
341
|
+
"REFUSED",
|
|
342
|
+
"SELF_COMPLETED",
|
|
343
|
+
"REVIEW",
|
|
344
|
+
"APPROVE",
|
|
345
|
+
"SCORE",
|
|
346
|
+
"COMPLETED",
|
|
347
|
+
"ASK_MODIFY_REVIEW",
|
|
348
|
+
"ASK_MODIFY_APPROVE",
|
|
349
|
+
"DELAY",
|
|
350
|
+
"NA"
|
|
351
|
+
]
|
|
298
352
|
}
|
|
299
353
|
},
|
|
300
354
|
{
|
|
301
355
|
"name": "tag",
|
|
302
356
|
"in": "query",
|
|
303
|
-
"description": "Project tag filter
|
|
357
|
+
"description": "Project tag filter",
|
|
304
358
|
"schema": {
|
|
305
|
-
"type": "string"
|
|
359
|
+
"type": "string",
|
|
360
|
+
"enum": [
|
|
361
|
+
"NORMAL",
|
|
362
|
+
"MASTER",
|
|
363
|
+
"REFERENCE"
|
|
364
|
+
]
|
|
306
365
|
}
|
|
307
366
|
},
|
|
308
367
|
{
|
|
@@ -380,9 +439,13 @@
|
|
|
380
439
|
{
|
|
381
440
|
"name": "groupBy",
|
|
382
441
|
"in": "query",
|
|
383
|
-
"description": "Group by
|
|
442
|
+
"description": "Group by field. When specified, returns grouped response without paging.",
|
|
384
443
|
"schema": {
|
|
385
|
-
"type": "string"
|
|
444
|
+
"type": "string",
|
|
445
|
+
"enum": [
|
|
446
|
+
"DIVISION",
|
|
447
|
+
"ITEM"
|
|
448
|
+
]
|
|
386
449
|
}
|
|
387
450
|
},
|
|
388
451
|
{
|
|
@@ -604,9 +667,15 @@
|
|
|
604
667
|
{
|
|
605
668
|
"name": "scope",
|
|
606
669
|
"in": "query",
|
|
607
|
-
"description": "Search scope:
|
|
670
|
+
"description": "Search scope (default: my)",
|
|
608
671
|
"schema": {
|
|
609
|
-
"type": "string"
|
|
672
|
+
"type": "string",
|
|
673
|
+
"enum": [
|
|
674
|
+
"MY",
|
|
675
|
+
"DIVISION",
|
|
676
|
+
"ALL"
|
|
677
|
+
],
|
|
678
|
+
"default": "my"
|
|
610
679
|
}
|
|
611
680
|
},
|
|
612
681
|
{
|
|
@@ -628,25 +697,51 @@
|
|
|
628
697
|
{
|
|
629
698
|
"name": "fmeaType",
|
|
630
699
|
"in": "query",
|
|
631
|
-
"description": "FMEA type filter
|
|
700
|
+
"description": "FMEA type filter",
|
|
632
701
|
"schema": {
|
|
633
|
-
"type": "string"
|
|
702
|
+
"type": "string",
|
|
703
|
+
"enum": [
|
|
704
|
+
"DESIGN",
|
|
705
|
+
"PROCESS",
|
|
706
|
+
"EQUIPMENT",
|
|
707
|
+
"FA",
|
|
708
|
+
"FTA",
|
|
709
|
+
"CPLAN"
|
|
710
|
+
]
|
|
634
711
|
}
|
|
635
712
|
},
|
|
636
713
|
{
|
|
637
714
|
"name": "status",
|
|
638
715
|
"in": "query",
|
|
639
|
-
"description": "Project status filter
|
|
716
|
+
"description": "Project status filter",
|
|
640
717
|
"schema": {
|
|
641
|
-
"type": "string"
|
|
718
|
+
"type": "string",
|
|
719
|
+
"enum": [
|
|
720
|
+
"IN_PROGRESS",
|
|
721
|
+
"REFUSED",
|
|
722
|
+
"SELF_COMPLETED",
|
|
723
|
+
"REVIEW",
|
|
724
|
+
"APPROVE",
|
|
725
|
+
"SCORE",
|
|
726
|
+
"COMPLETED",
|
|
727
|
+
"ASK_MODIFY_REVIEW",
|
|
728
|
+
"ASK_MODIFY_APPROVE",
|
|
729
|
+
"DELAY",
|
|
730
|
+
"NA"
|
|
731
|
+
]
|
|
642
732
|
}
|
|
643
733
|
},
|
|
644
734
|
{
|
|
645
735
|
"name": "tag",
|
|
646
736
|
"in": "query",
|
|
647
|
-
"description": "Project tag filter
|
|
737
|
+
"description": "Project tag filter",
|
|
648
738
|
"schema": {
|
|
649
|
-
"type": "string"
|
|
739
|
+
"type": "string",
|
|
740
|
+
"enum": [
|
|
741
|
+
"NORMAL",
|
|
742
|
+
"MASTER",
|
|
743
|
+
"REFERENCE"
|
|
744
|
+
]
|
|
650
745
|
}
|
|
651
746
|
},
|
|
652
747
|
{
|
|
@@ -16,10 +16,14 @@
|
|
|
16
16
|
{
|
|
17
17
|
"name": "apType",
|
|
18
18
|
"in": "path",
|
|
19
|
-
"description": "Action priority type
|
|
19
|
+
"description": "Action priority type",
|
|
20
20
|
"required": true,
|
|
21
21
|
"schema": {
|
|
22
|
-
"type": "string"
|
|
22
|
+
"type": "string",
|
|
23
|
+
"enum": [
|
|
24
|
+
"AIAG",
|
|
25
|
+
"MSR"
|
|
26
|
+
]
|
|
23
27
|
}
|
|
24
28
|
}
|
|
25
29
|
],
|
|
@@ -25,15 +25,21 @@
|
|
|
25
25
|
{
|
|
26
26
|
"name": "scope",
|
|
27
27
|
"in": "query",
|
|
28
|
-
"description": "Condition scope
|
|
28
|
+
"description": "Condition scope filter. If omitted, defaults to all.",
|
|
29
29
|
"schema": {
|
|
30
|
-
"type": "string"
|
|
30
|
+
"type": "string",
|
|
31
|
+
"enum": [
|
|
32
|
+
"OWNED",
|
|
33
|
+
"CANDIDATE",
|
|
34
|
+
"ALL"
|
|
35
|
+
],
|
|
36
|
+
"default": "all"
|
|
31
37
|
}
|
|
32
38
|
},
|
|
33
39
|
{
|
|
34
40
|
"name": "type",
|
|
35
41
|
"in": "query",
|
|
36
|
-
"description": "Condition type
|
|
42
|
+
"description": "Condition type filter. If omitted, returns all types.",
|
|
37
43
|
"schema": {
|
|
38
44
|
"type": "string",
|
|
39
45
|
"enum": [
|
|
@@ -168,9 +168,17 @@
|
|
|
168
168
|
{
|
|
169
169
|
"name": "fmeaType",
|
|
170
170
|
"in": "query",
|
|
171
|
-
"description": "FMEA type filter
|
|
171
|
+
"description": "FMEA type filter. Omit for all types.",
|
|
172
172
|
"schema": {
|
|
173
|
-
"type": "string"
|
|
173
|
+
"type": "string",
|
|
174
|
+
"enum": [
|
|
175
|
+
"DESIGN",
|
|
176
|
+
"PROCESS",
|
|
177
|
+
"EQUIPMENT",
|
|
178
|
+
"FA",
|
|
179
|
+
"FTA",
|
|
180
|
+
"CPLAN"
|
|
181
|
+
]
|
|
174
182
|
}
|
|
175
183
|
}
|
|
176
184
|
],
|