@terasky/backstage-plugin-ai-rules 1.4.1 → 1.5.0
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/dist/index.d.ts +2 -1
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
|
2
2
|
import React from 'react';
|
|
3
3
|
import { Entity } from '@backstage/catalog-model';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
|
+
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
5
6
|
|
|
6
7
|
declare const aiRulesPlugin: _backstage_core_plugin_api.BackstagePlugin<{
|
|
7
8
|
root: _backstage_core_plugin_api.RouteRef<undefined>;
|
|
@@ -104,7 +105,7 @@ interface AIRulesComponentProps {
|
|
|
104
105
|
}
|
|
105
106
|
declare const isAIRulesAvailable: (entity: Entity) => boolean;
|
|
106
107
|
|
|
107
|
-
declare const aiRulesApiRef:
|
|
108
|
+
declare const aiRulesApiRef: _backstage_frontend_plugin_api.ApiRef<AiRulesApi>;
|
|
108
109
|
interface AiRulesApi {
|
|
109
110
|
getAiRules(ruleTypes: string[]): Promise<AIRulesResponse>;
|
|
110
111
|
getMCPServers(gitUrl: string): Promise<MCPServersResponse>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@terasky/backstage-plugin-ai-rules",
|
|
3
3
|
"description": "AI Rules Visualizer Plugin for Backstage",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.5.0",
|
|
5
5
|
"main": "./dist/index.esm.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@backstage/catalog-model": "^1.7.6",
|
|
41
|
-
"@backstage/core-components": "^0.18.
|
|
42
|
-
"@backstage/core-plugin-api": "^1.12.
|
|
43
|
-
"@backstage/frontend-plugin-api": "^0.13.
|
|
44
|
-
"@backstage/plugin-catalog-react": "^1.21.
|
|
41
|
+
"@backstage/core-components": "^0.18.6",
|
|
42
|
+
"@backstage/core-plugin-api": "^1.12.2",
|
|
43
|
+
"@backstage/frontend-plugin-api": "^0.13.4",
|
|
44
|
+
"@backstage/plugin-catalog-react": "^1.21.6",
|
|
45
45
|
"@backstage/theme": "^0.7.1",
|
|
46
46
|
"@material-ui/core": "^4.12.4",
|
|
47
47
|
"@material-ui/icons": "^4.11.3",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@backstage/cli": "^0.35.
|
|
55
|
-
"@backstage/core-app-api": "^1.19.
|
|
54
|
+
"@backstage/cli": "^0.35.3",
|
|
55
|
+
"@backstage/core-app-api": "^1.19.4",
|
|
56
56
|
"@backstage/dev-utils": "^1.1.19",
|
|
57
57
|
"@backstage/test-utils": "^1.7.14",
|
|
58
58
|
"@testing-library/jest-dom": "^6.0.0",
|