Skip to content

Commit 9cc9701

Browse files
authored
Correctly export resource types (#236)
1 parent 26af9c1 commit 9cc9701

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.0.7
4+
5+
- Fix exporting of resource types
6+
37
## v0.0.6
48

59
- Add list of Metrics Supported Resource Types [#235](https://github.com/grafana/grafana-azure-sdk-react/pull/235)

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grafana/azure-sdk",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "Common Azure features for Grafana",
55
"main": "dist/index.js",
66
"module": "dist/esm/index.js",

Diff for: src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ export * from './credentials/AzureCredentials';
22
export * from './credentials/AzureCredentialsConfig';
33
export * from './clouds';
44
export * from './settings';
5+
export * from './resources';

Diff for: src/resources/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './MetricsResourceTypes';
2+
export * from './ResourceTypes';

0 commit comments

Comments
 (0)