@grafana/plugin-types 0.0.24 → 0.0.26

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.
@@ -136,3 +136,8 @@ export interface EntityCrossLinkWidgetProps {
136
136
  onConnectedEntityClick?: (entity: Entity) => void;
137
137
  drawerView?: (props: DrawerViewProps) => JSX.Element;
138
138
  }
139
+ export interface RelatedEntitiesWidgetProps {
140
+ labels: Record<string, string | number>;
141
+ start: number | string;
142
+ end: number | string;
143
+ }
@@ -42,6 +42,9 @@ export interface TimeRange {
42
42
  }
43
43
  export type ServiceDashboardMetadata = {
44
44
  instanceId?: string;
45
+ job?: string;
46
+ account_id?: string;
47
+ region?: string;
45
48
  };
46
49
  export type ServiceDashboardBackButton = {
47
50
  visible: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/plugin-types",
3
- "version": "0.0.24",
3
+ "version": "0.0.26",
4
4
  "description": "NPM package consisting of various Grafana plugins exposed types.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Grafana Labs",