fmea-api-mcp-server 1.1.63 → 1.1.64
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/changelog/1.1.63.json +11 -0
- package/data/changelog/next.json +87 -20
- package/data/endpoint-lookup.json +1 -1
- package/data/enums.json +3 -2
- package/data/search-index.oxy +1 -1
- package/dist/index.js +1 -1
- package/dist/intents.js +1 -1
- package/dist/synonyms.js +2 -1
- package/endpoints/v2/documents/core.json +202 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
package/dist/intents.js
CHANGED
|
@@ -13,7 +13,7 @@ export const ACTION_KEYWORDS = {
|
|
|
13
13
|
'MONITOR': ['monitor', 'track', 'audit', 'inspect', 'history', 'logs', 'usage', 'metrics', 'stats'],
|
|
14
14
|
// CRUD
|
|
15
15
|
'create': ['create', 'add', 'new', 'make', 'generate', 'register'],
|
|
16
|
-
'update': ['update', 'edit', 'change', 'modify', 'save', 'set', 'reset', 'password', 'refresh', 'approve', 'reject'],
|
|
16
|
+
'update': ['update', 'edit', 'change', 'modify', 'save', 'set', 'reset', 'password', 'refresh', 'approve', 'reject', 'rename'],
|
|
17
17
|
'delete': ['delete', 'remove', 'drop', 'erase'],
|
|
18
18
|
'list': ['list', 'get', 'show', 'fetch', 'all', 'view', 'files', 'status', 'check'],
|
|
19
19
|
};
|
package/dist/synonyms.js
CHANGED
|
@@ -117,7 +117,8 @@ export const SYNONYM_GROUPS = {
|
|
|
117
117
|
"backup": ["export", "dump", "snapshot", "data"],
|
|
118
118
|
"download": ["get", "fetch", "retrieve", "export", "pull"],
|
|
119
119
|
"copy": ["duplicate", "clone", "replicate", "mirror"],
|
|
120
|
-
"move": ["transfer", "relocate", "
|
|
120
|
+
"move": ["transfer", "relocate", "shift", "migrate"],
|
|
121
|
+
"rename": ["update name", "change name", "modify name", "edit name"], // [R35] rename -> update action
|
|
121
122
|
// Auth / Security (New)
|
|
122
123
|
"auth": ["authentication", "login", "signin", "verify", "check", "token", "credential"],
|
|
123
124
|
"authenticate": ["auth", "login", "signin", "api key", "credential", "client"], // [R22] authenticate -> api-key
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{
|
|
7
7
|
"path": "/api/v2/projects/{projectId}/documents/categories/{documentCategory}",
|
|
8
8
|
"method": "GET",
|
|
9
|
-
"operationId": "
|
|
9
|
+
"operationId": "listByCategory_1",
|
|
10
10
|
"summary": "List documents by category for a project",
|
|
11
11
|
"description": "Returns documents in the specified category for the given project. Document categories group related files (e.g., FMEA reports, reference materials).",
|
|
12
12
|
"tags": [
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
"SYSTEM_DEFINITION",
|
|
34
34
|
"WORKSHEET",
|
|
35
35
|
"BLOCK_DIAGRAM",
|
|
36
|
-
"FMM_DIAGRAM"
|
|
36
|
+
"FMM_DIAGRAM",
|
|
37
|
+
"GENERAL"
|
|
37
38
|
]
|
|
38
39
|
}
|
|
39
40
|
}
|
|
@@ -65,6 +66,9 @@
|
|
|
65
66
|
"path": {
|
|
66
67
|
"type": "string"
|
|
67
68
|
},
|
|
69
|
+
"context": {
|
|
70
|
+
"type": "object"
|
|
71
|
+
},
|
|
68
72
|
"fileSize": {
|
|
69
73
|
"type": "string"
|
|
70
74
|
},
|
|
@@ -78,7 +82,8 @@
|
|
|
78
82
|
"SYSTEM_DEFINITION",
|
|
79
83
|
"WORKSHEET",
|
|
80
84
|
"BLOCK_DIAGRAM",
|
|
81
|
-
"FMM_DIAGRAM"
|
|
85
|
+
"FMM_DIAGRAM",
|
|
86
|
+
"GENERAL"
|
|
82
87
|
]
|
|
83
88
|
}
|
|
84
89
|
}
|
|
@@ -119,7 +124,8 @@
|
|
|
119
124
|
"SYSTEM_DEFINITION",
|
|
120
125
|
"WORKSHEET",
|
|
121
126
|
"BLOCK_DIAGRAM",
|
|
122
|
-
"FMM_DIAGRAM"
|
|
127
|
+
"FMM_DIAGRAM",
|
|
128
|
+
"GENERAL"
|
|
123
129
|
]
|
|
124
130
|
}
|
|
125
131
|
}
|
|
@@ -175,6 +181,9 @@
|
|
|
175
181
|
"path": {
|
|
176
182
|
"type": "string"
|
|
177
183
|
},
|
|
184
|
+
"context": {
|
|
185
|
+
"type": "object"
|
|
186
|
+
},
|
|
178
187
|
"fileSize": {
|
|
179
188
|
"type": "string"
|
|
180
189
|
},
|
|
@@ -188,7 +197,8 @@
|
|
|
188
197
|
"SYSTEM_DEFINITION",
|
|
189
198
|
"WORKSHEET",
|
|
190
199
|
"BLOCK_DIAGRAM",
|
|
191
|
-
"FMM_DIAGRAM"
|
|
200
|
+
"FMM_DIAGRAM",
|
|
201
|
+
"GENERAL"
|
|
192
202
|
]
|
|
193
203
|
}
|
|
194
204
|
}
|
|
@@ -253,6 +263,9 @@
|
|
|
253
263
|
"path": {
|
|
254
264
|
"type": "string"
|
|
255
265
|
},
|
|
266
|
+
"context": {
|
|
267
|
+
"type": "object"
|
|
268
|
+
},
|
|
256
269
|
"fileSize": {
|
|
257
270
|
"type": "string"
|
|
258
271
|
},
|
|
@@ -266,7 +279,8 @@
|
|
|
266
279
|
"SYSTEM_DEFINITION",
|
|
267
280
|
"WORKSHEET",
|
|
268
281
|
"BLOCK_DIAGRAM",
|
|
269
|
-
"FMM_DIAGRAM"
|
|
282
|
+
"FMM_DIAGRAM",
|
|
283
|
+
"GENERAL"
|
|
270
284
|
]
|
|
271
285
|
}
|
|
272
286
|
}
|
|
@@ -415,6 +429,9 @@
|
|
|
415
429
|
"path": {
|
|
416
430
|
"type": "string"
|
|
417
431
|
},
|
|
432
|
+
"context": {
|
|
433
|
+
"type": "object"
|
|
434
|
+
},
|
|
418
435
|
"fileSize": {
|
|
419
436
|
"type": "string"
|
|
420
437
|
},
|
|
@@ -428,7 +445,8 @@
|
|
|
428
445
|
"SYSTEM_DEFINITION",
|
|
429
446
|
"WORKSHEET",
|
|
430
447
|
"BLOCK_DIAGRAM",
|
|
431
|
-
"FMM_DIAGRAM"
|
|
448
|
+
"FMM_DIAGRAM",
|
|
449
|
+
"GENERAL"
|
|
432
450
|
]
|
|
433
451
|
}
|
|
434
452
|
}
|
|
@@ -469,7 +487,8 @@
|
|
|
469
487
|
"SYSTEM_DEFINITION",
|
|
470
488
|
"WORKSHEET",
|
|
471
489
|
"BLOCK_DIAGRAM",
|
|
472
|
-
"FMM_DIAGRAM"
|
|
490
|
+
"FMM_DIAGRAM",
|
|
491
|
+
"GENERAL"
|
|
473
492
|
]
|
|
474
493
|
}
|
|
475
494
|
},
|
|
@@ -479,6 +498,7 @@
|
|
|
479
498
|
"description": "Virtual document path prefix for filtering",
|
|
480
499
|
"required": true,
|
|
481
500
|
"schema": {
|
|
501
|
+
"pattern": ".+",
|
|
482
502
|
"type": "string"
|
|
483
503
|
}
|
|
484
504
|
}
|
|
@@ -533,6 +553,180 @@
|
|
|
533
553
|
}
|
|
534
554
|
}
|
|
535
555
|
}
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"path": "/api/v2/projects/{projectId}/documents/categories",
|
|
559
|
+
"method": "GET",
|
|
560
|
+
"operationId": "listByCategory",
|
|
561
|
+
"summary": "List documents across all categories",
|
|
562
|
+
"description": "Returns all project documents when category selection is omitted. This is an alias of GET /projects/{projectId}/documents for category-optional clients.",
|
|
563
|
+
"tags": [
|
|
564
|
+
"Documents"
|
|
565
|
+
],
|
|
566
|
+
"parameters": [
|
|
567
|
+
{
|
|
568
|
+
"name": "projectId",
|
|
569
|
+
"in": "path",
|
|
570
|
+
"description": "Project ID whose documents to list",
|
|
571
|
+
"required": true,
|
|
572
|
+
"schema": {
|
|
573
|
+
"type": "string"
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
],
|
|
577
|
+
"requestBody": null,
|
|
578
|
+
"responses": {
|
|
579
|
+
"default": {
|
|
580
|
+
"description": "default response",
|
|
581
|
+
"content": {
|
|
582
|
+
"application/json": {
|
|
583
|
+
"schema": {
|
|
584
|
+
"type": "array",
|
|
585
|
+
"items": {
|
|
586
|
+
"type": "object",
|
|
587
|
+
"properties": {
|
|
588
|
+
"id": {
|
|
589
|
+
"type": "integer"
|
|
590
|
+
},
|
|
591
|
+
"type": {
|
|
592
|
+
"type": "string",
|
|
593
|
+
"enum": [
|
|
594
|
+
"UPLOAD",
|
|
595
|
+
"URL"
|
|
596
|
+
]
|
|
597
|
+
},
|
|
598
|
+
"value": {
|
|
599
|
+
"type": "string"
|
|
600
|
+
},
|
|
601
|
+
"path": {
|
|
602
|
+
"type": "string"
|
|
603
|
+
},
|
|
604
|
+
"context": {
|
|
605
|
+
"type": "object"
|
|
606
|
+
},
|
|
607
|
+
"fileSize": {
|
|
608
|
+
"type": "string"
|
|
609
|
+
},
|
|
610
|
+
"uploadDate": {
|
|
611
|
+
"type": "string",
|
|
612
|
+
"format": "date"
|
|
613
|
+
},
|
|
614
|
+
"category": {
|
|
615
|
+
"type": "string",
|
|
616
|
+
"enum": [
|
|
617
|
+
"SYSTEM_DEFINITION",
|
|
618
|
+
"WORKSHEET",
|
|
619
|
+
"BLOCK_DIAGRAM",
|
|
620
|
+
"FMM_DIAGRAM",
|
|
621
|
+
"GENERAL"
|
|
622
|
+
]
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"path": "/api/v2/projects/{projectId}/documents/{documentId}",
|
|
634
|
+
"method": "PATCH",
|
|
635
|
+
"operationId": "rename",
|
|
636
|
+
"summary": "Rename a project document",
|
|
637
|
+
"description": "Updates the stored URL or uploaded file name of the specified project document. Upload documents rename the physical file in place, while URL documents update only the database value.",
|
|
638
|
+
"tags": [
|
|
639
|
+
"Documents"
|
|
640
|
+
],
|
|
641
|
+
"parameters": [
|
|
642
|
+
{
|
|
643
|
+
"name": "projectId",
|
|
644
|
+
"in": "path",
|
|
645
|
+
"description": "Project ID that owns the document",
|
|
646
|
+
"required": true,
|
|
647
|
+
"schema": {
|
|
648
|
+
"type": "string"
|
|
649
|
+
}
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"name": "documentId",
|
|
653
|
+
"in": "path",
|
|
654
|
+
"description": "Document ID to rename (numeric)",
|
|
655
|
+
"required": true,
|
|
656
|
+
"schema": {
|
|
657
|
+
"type": "integer",
|
|
658
|
+
"format": "int32"
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
],
|
|
662
|
+
"requestBody": {
|
|
663
|
+
"content": {
|
|
664
|
+
"application/json": {
|
|
665
|
+
"schema": {
|
|
666
|
+
"required": [
|
|
667
|
+
"value"
|
|
668
|
+
],
|
|
669
|
+
"type": "object",
|
|
670
|
+
"properties": {
|
|
671
|
+
"value": {
|
|
672
|
+
"type": "string"
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
}
|
|
676
|
+
}
|
|
677
|
+
},
|
|
678
|
+
"required": true
|
|
679
|
+
},
|
|
680
|
+
"responses": {
|
|
681
|
+
"default": {
|
|
682
|
+
"description": "default response",
|
|
683
|
+
"content": {
|
|
684
|
+
"application/json": {
|
|
685
|
+
"schema": {
|
|
686
|
+
"type": "object",
|
|
687
|
+
"properties": {
|
|
688
|
+
"id": {
|
|
689
|
+
"type": "integer"
|
|
690
|
+
},
|
|
691
|
+
"type": {
|
|
692
|
+
"type": "string",
|
|
693
|
+
"enum": [
|
|
694
|
+
"UPLOAD",
|
|
695
|
+
"URL"
|
|
696
|
+
]
|
|
697
|
+
},
|
|
698
|
+
"value": {
|
|
699
|
+
"type": "string"
|
|
700
|
+
},
|
|
701
|
+
"path": {
|
|
702
|
+
"type": "string"
|
|
703
|
+
},
|
|
704
|
+
"context": {
|
|
705
|
+
"type": "object"
|
|
706
|
+
},
|
|
707
|
+
"fileSize": {
|
|
708
|
+
"type": "string"
|
|
709
|
+
},
|
|
710
|
+
"uploadDate": {
|
|
711
|
+
"type": "string",
|
|
712
|
+
"format": "date"
|
|
713
|
+
},
|
|
714
|
+
"category": {
|
|
715
|
+
"type": "string",
|
|
716
|
+
"enum": [
|
|
717
|
+
"SYSTEM_DEFINITION",
|
|
718
|
+
"WORKSHEET",
|
|
719
|
+
"BLOCK_DIAGRAM",
|
|
720
|
+
"FMM_DIAGRAM",
|
|
721
|
+
"GENERAL"
|
|
722
|
+
]
|
|
723
|
+
}
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
}
|
|
536
730
|
}
|
|
537
731
|
]
|
|
538
732
|
}
|