fmea-api-mcp-server 1.1.64 → 1.1.66

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.
Files changed (38) hide show
  1. package/data/changelog/1.1.64.json +10 -0
  2. package/data/changelog/next.json +20 -83
  3. package/data/endpoint-lookup.json +1 -1
  4. package/data/enums.json +2 -2
  5. package/data/search-index.oxy +1 -1
  6. package/dist/index.js +1 -1
  7. package/dist/services/search/OramaSearchService.js +4 -1
  8. package/dist/synonyms.js +2 -1
  9. package/dist/utils/ScoreCalculator.js +7 -2
  10. package/endpoints/v2/action-status/core.json +59 -0
  11. package/endpoints/v2/classification-excel/core.json +1 -1
  12. package/endpoints/v2/classifications/core.json +110 -458
  13. package/endpoints/v2/condition-library-excel/core.json +220 -2
  14. package/endpoints/v2/division-excel/core.json +1 -1
  15. package/endpoints/v2/divisions/core.json +214 -238
  16. package/endpoints/v2/documents/core.json +1 -1
  17. package/endpoints/v2/evaluation/core.json +433 -663
  18. package/endpoints/v2/evaluation-excel/core.json +1 -1
  19. package/endpoints/v2/failure-mode-library/core.json +189 -0
  20. package/endpoints/v2/failure-mode-library-excel/core.json +289 -0
  21. package/endpoints/v2/fourm/core.json +3 -3
  22. package/endpoints/v2/high-items/core.json +1 -1
  23. package/endpoints/v2/notice-excel/core.json +1 -1
  24. package/endpoints/v2/notices/core.json +4 -4
  25. package/endpoints/v2/process-symbol-excel/core.json +63 -4
  26. package/endpoints/v2/process-symbols/core.json +2 -2
  27. package/endpoints/v2/projects/core.json +26 -2
  28. package/endpoints/v2/scoring/core.json +34 -137
  29. package/endpoints/v2/synonym-excel/core.json +100 -16
  30. package/endpoints/v2/synonyms/core.json +58 -185
  31. package/endpoints/v2/templates/core.json +1 -157
  32. package/endpoints/v2/user-excel/core.json +1 -1
  33. package/endpoints/v2/users/core.json +42 -0
  34. package/endpoints/v2/worksheet-template-excel/core.json +1 -1
  35. package/endpoints/v2/worksheets/core.json +2 -2
  36. package/endpoints/v2/worksheets/excel.json +1 -1
  37. package/package.json +1 -1
  38. package/endpoints/v2/fm-checkpoint/core.json +0 -363
@@ -0,0 +1,10 @@
1
+ {
2
+ "enum_changes": {
3
+ "added_enums": [
4
+ "FailureModeLibraryNodeType"
5
+ ],
6
+ "removed_enums": [
7
+ "FmCheckpointNodeType"
8
+ ]
9
+ }
10
+ }
@@ -1,114 +1,51 @@
1
1
  {
2
- "generated_at": "2026-03-29T23:14:59.437980",
3
- "previous": "openapi.20260329_231458.json",
2
+ "generated_at": "2026-03-31T11:26:13.759316",
3
+ "previous": "openapi.20260331_112612.json",
4
4
  "latest": "openapi.latest.json",
5
5
  "summary": {
6
- "added": 2,
6
+ "added": 0,
7
7
  "removed": 0,
8
- "modified": 3
8
+ "modified": 2
9
9
  },
10
- "added": [
11
- {
12
- "method": "GET",
13
- "path": "/api/v2/projects/{projectId}/documents/categories",
14
- "summary": "List documents across all categories",
15
- "operationId": "listByCategory"
16
- },
17
- {
18
- "method": "PATCH",
19
- "path": "/api/v2/projects/{projectId}/documents/{documentId}",
20
- "summary": "Rename a project document",
21
- "operationId": "rename"
22
- }
23
- ],
10
+ "added": [],
24
11
  "removed": [],
25
12
  "modified": [
26
13
  {
27
14
  "method": "GET",
28
- "path": "/api/v2/projects/{projectId}/documents/categories/{documentCategory}",
29
- "summary": "List documents by category for a project",
15
+ "path": "/api/v2/synonym-excel/export",
16
+ "summary": "Export synonyms to Excel",
30
17
  "changes": [
31
- "operationId",
32
18
  "parameters"
33
19
  ],
34
20
  "parameter_changes": {
35
21
  "added": [],
36
- "removed": [],
37
- "modified": [
22
+ "removed": [
38
23
  {
39
- "name": "documentCategory",
40
- "in": "path",
41
- "changed_fields": [
42
- "schema"
43
- ],
44
- "enum_changes": {
45
- "added": [
46
- "GENERAL"
47
- ]
48
- }
24
+ "name": "useSynonym",
25
+ "in": "query"
49
26
  }
50
- ]
27
+ ],
28
+ "modified": []
51
29
  }
52
30
  },
53
31
  {
54
32
  "method": "GET",
55
- "path": "/api/v2/projects/{projectId}/documents/categories/{documentCategory}/path/{documentPath}",
56
- "summary": "List documents by category and path for a project",
57
- "changes": [
58
- "parameters"
59
- ],
60
- "parameter_changes": {
61
- "added": [],
62
- "removed": [],
63
- "modified": [
64
- {
65
- "name": "documentCategory",
66
- "in": "path",
67
- "changed_fields": [
68
- "schema"
69
- ],
70
- "enum_changes": {
71
- "added": [
72
- "GENERAL"
73
- ]
74
- }
75
- },
76
- {
77
- "name": "documentPath",
78
- "in": "path",
79
- "changed_fields": [
80
- "schema"
81
- ]
82
- }
83
- ]
84
- }
85
- },
86
- {
87
- "method": "POST",
88
- "path": "/api/v2/projects/{projectId}/documents/categories/{documentCategory}",
89
- "summary": "Add a document to a project category",
33
+ "path": "/api/v2/synonyms",
34
+ "summary": "List synonym snapshot groups",
90
35
  "changes": [
91
36
  "parameters"
92
37
  ],
93
38
  "parameter_changes": {
94
39
  "added": [],
95
- "removed": [],
96
- "modified": [
40
+ "removed": [
97
41
  {
98
- "name": "documentCategory",
99
- "in": "path",
100
- "changed_fields": [
101
- "schema"
102
- ],
103
- "enum_changes": {
104
- "added": [
105
- "GENERAL"
106
- ]
107
- }
42
+ "name": "useSynonym",
43
+ "in": "query"
108
44
  }
109
- ]
45
+ ],
46
+ "modified": []
110
47
  }
111
48
  }
112
49
  ],
113
- "fmea_ref": "5c252853e"
50
+ "fmea_ref": "f0ec4b9d3"
114
51
  }