@grafana/plugin-types 0.0.73 → 0.0.75
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.
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// Generated by dts-bundle-generator v9.5.1
|
|
2
|
+
|
|
3
|
+
export interface IntegrationManagementProps {
|
|
4
|
+
integrationId: string;
|
|
5
|
+
adminApiUrl?: string;
|
|
6
|
+
editorApiUrl?: string;
|
|
7
|
+
onInstallSuccess?: () => void;
|
|
8
|
+
onInstallError?: () => void;
|
|
9
|
+
onUpdateSuccess?: () => void;
|
|
10
|
+
onUpdateError?: () => void;
|
|
11
|
+
onUninstallSuccess?: () => void;
|
|
12
|
+
onUninstallError?: () => void;
|
|
13
|
+
onUpgradeAvailable?: (newVersion: string) => void;
|
|
14
|
+
onLoading?: (isLoading: boolean) => void;
|
|
15
|
+
className?: string;
|
|
16
|
+
installButtonLabel?: string;
|
|
17
|
+
uninstallButtonLabel?: string;
|
|
18
|
+
updateButtonLabelTemplate?: string;
|
|
19
|
+
disabled?: boolean;
|
|
20
|
+
disabledTooltipMessage?: string;
|
|
21
|
+
auto?: boolean;
|
|
22
|
+
headless?: boolean;
|
|
23
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * as grafanaAssertsApp from "./grafana-asserts-app/index";
|
|
2
2
|
export * as grafanaCspApp from "./grafana-csp-app/index";
|
|
3
|
+
export * as grafanaEasystartApp from "./grafana-easystart-app/index";
|
|
3
4
|
export * as grafanaExploretracesApp from "./grafana-exploretraces-app/index";
|
|
4
5
|
export * as grafanaLokiexploreApp from "./grafana-lokiexplore-app/index";
|
|
5
6
|
export * as grafanaPluginsplatformApp from "./grafana-pluginsplatform-app/index";
|
|
@@ -215,7 +215,7 @@ export interface PluginSchema {
|
|
|
215
215
|
* Unique identifier of the included resource
|
|
216
216
|
*/
|
|
217
217
|
uid?: string;
|
|
218
|
-
type
|
|
218
|
+
type: "dashboard" | "page" | "panel" | "datasource";
|
|
219
219
|
name?: string;
|
|
220
220
|
/**
|
|
221
221
|
* (Legacy) The Angular component to use for a page.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/plugin-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.75",
|
|
4
4
|
"description": "NPM package consisting of various Grafana plugins exposed types.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Grafana Labs",
|
|
@@ -35,6 +35,9 @@
|
|
|
35
35
|
"./grafana-csp-app": {
|
|
36
36
|
"types": "./dist/grafana-csp-app/index.d.ts"
|
|
37
37
|
},
|
|
38
|
+
"./grafana-easystart-app": {
|
|
39
|
+
"types": "./dist/grafana-easystart-app/index.d.ts"
|
|
40
|
+
},
|
|
38
41
|
"./grafana-exploretraces-app": {
|
|
39
42
|
"types": "./dist/grafana-exploretraces-app/index.d.ts"
|
|
40
43
|
},
|
|
@@ -52,6 +55,7 @@
|
|
|
52
55
|
"dist",
|
|
53
56
|
"grafana-asserts-app",
|
|
54
57
|
"grafana-csp-app",
|
|
58
|
+
"grafana-easystart-app",
|
|
55
59
|
"grafana-exploretraces-app",
|
|
56
60
|
"grafana-lokiexplore-app",
|
|
57
61
|
"grafana-pluginsplatform-app",
|