fmea-api-mcp-server 1.1.26 → 1.1.27
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/dist/synonyms.js +17 -1
- package/endpoints/v2/classifications/core.json +1151 -0
- package/endpoints/v2/condition-library/core.json +18 -18
- package/endpoints/v2/condition-library-excel/core.json +3 -3
- package/endpoints/v2/evaluation/core.json +537 -0
- package/endpoints/v2/failure-modes/core.json +4 -4
- package/endpoints/v2/projects/core.json +47 -20
- package/endpoints/v2/system-definition/core.json +3 -3
- package/endpoints/v2/system-definition-excel/core.json +3 -3
- package/endpoints/v2/users/core.json +12 -12
- package/endpoints/v2/worksheet-templates/core.json +8 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
package/dist/synonyms.js
CHANGED
|
@@ -41,7 +41,7 @@ export const RESOURCE_ALIASES = {
|
|
|
41
41
|
'synonym': ['synonyms', 'synonym'], // [Fix] Key must match singular resourceType for boosting
|
|
42
42
|
'recommendation-item': ['recommendation item', 'recommended action', 'corrective action', 'action item', 'mitigation item'], // [R20] New v2 recommendation items
|
|
43
43
|
'fourm': ['4m', 'four m', '4m analysis', 'man machine material environment'], // 4M Analysis
|
|
44
|
-
'term': ['term', 'terms', 'taxonomy', 'terminology', '
|
|
44
|
+
'term': ['term', 'terms', 'taxonomy', 'terminology', 'glossary'], // Term tree management — removed 'classification' (now dedicated resource [R28])
|
|
45
45
|
'condition-library': ['condition library', 'stress condition', 'design condition', 'process condition', 'stress library', 'design library', 'process library'], // [R24] Condition library resource
|
|
46
46
|
'system-definition': ['system definition', 'system def', 'sys def', 'system spec', 'system specification', 'system function', 'system requirement'], // [R21] New system definition resource — removed 'condition/conditions' to avoid conflict with condition-library
|
|
47
47
|
'system-definition-excel': ['system definition excel', 'system definition import', 'system definition export', 'conditions export', 'conditions import', 'export conditions', 'import conditions'], // [R23] Excel import/export for system definition conditions
|
|
@@ -49,6 +49,9 @@ export const RESOURCE_ALIASES = {
|
|
|
49
49
|
'workspace-bootstrap': ['bootstrap', 'workspace bootstrap', 'workspace init', 'workspace setup'], // [R21] Workspace bootstrap data
|
|
50
50
|
'search-failure-mode': ['global failure mode', 'search failure mode', 'failure mode search', 'global search failure', 'cross-project failure mode'], // [R25] Global failure mode search
|
|
51
51
|
'dashboard': ['dashboard', 'dashboard summary', 'my projects summary', 'projects overview'], // [R25] Dashboard summary resource
|
|
52
|
+
'evaluation': ['evaluation', 'evaluation criteria', 'assessment', 'rating criteria', 'grading', 'scoring criteria'], // [R27] Evaluation criteria resource
|
|
53
|
+
'significance-criteria': ['significance criteria', 'significance', 'sod threshold', 'rpn threshold', 'severity occurrence detection', 'sod criteria'], // [R27] Significance criteria sub-resource
|
|
54
|
+
'classification': ['classification', 'classification group', 'classification item', 'symbol', 'label group', 'risk classification'], // [R28] Classification groups and items
|
|
52
55
|
};
|
|
53
56
|
export const SYNONYM_GROUPS = {
|
|
54
57
|
// Read / Retrieve
|
|
@@ -135,6 +138,19 @@ export const SYNONYM_GROUPS = {
|
|
|
135
138
|
// [R22] New fixes
|
|
136
139
|
"work": ["nodes", "block nodes", "diagram", "fmm", "block diagram nodes"], // "save work" -> block-diagram nodes / fmm-diagram resources
|
|
137
140
|
"client": ["api key", "credential", "authenticate", "auth"], // "authenticate client" -> api-key
|
|
141
|
+
// [R27] Evaluation Criteria Domain
|
|
142
|
+
"evaluation": ["assessment", "criteria", "rating", "grading", "scoring"],
|
|
143
|
+
"assessment": ["evaluation", "criteria", "rating", "grading", "appraisal"],
|
|
144
|
+
"significance": ["importance", "priority", "criticality", "severity", "weight"],
|
|
145
|
+
"threshold": ["limit", "boundary", "cutoff", "criteria", "target"],
|
|
146
|
+
"rpn": ["risk priority number", "risk score", "risk ranking"],
|
|
147
|
+
"display": ["visibility", "show", "hide", "toggle", "visible"],
|
|
148
|
+
"default": ["preset", "standard", "baseline", "initial"],
|
|
149
|
+
"refresh": ["reload", "update", "recalculate", "regenerate", "sync"],
|
|
150
|
+
"snapshot": ["cache", "refresh", "summary", "data snapshot"],
|
|
151
|
+
// [R28] Classification Domain
|
|
152
|
+
"classification": ["category", "label", "symbol", "group", "class", "tag"],
|
|
153
|
+
"symbol": ["icon", "marker", "badge", "image", "label"],
|
|
138
154
|
};
|
|
139
155
|
/**
|
|
140
156
|
* Expands a single token into a list of synonyms including itself.
|