File tree 3 files changed +27
-2
lines changed
3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change
1
+ # [ 0.22.0-beta.1] ( https://github.com/cloudgraphdev/sdk/compare/0.21.1...0.22.0-beta.1 ) (2022-10-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * ** sdk:** change type any to DocumentNode ([ f85bc9c] ( https://github.com/cloudgraphdev/sdk/commit/f85bc9c9ef00d81e99450c714fe1d8f8c5e27753 ) )
7
+
8
+
9
+ ### Features
10
+
11
+ * ** sdk:** return raw schemas instead of strings ([ 2990e7b] ( https://github.com/cloudgraphdev/sdk/commit/2990e7b6ec6784b08ebb1c4ad8c00300ae98f520 ) )
12
+
13
+ # [ 0.22.0-alpha.1] ( https://github.com/cloudgraphdev/sdk/compare/0.21.1...0.22.0-alpha.1 ) (2022-10-04)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * ** sdk:** change type any to DocumentNode ([ f85bc9c] ( https://github.com/cloudgraphdev/sdk/commit/f85bc9c9ef00d81e99450c714fe1d8f8c5e27753 ) )
19
+
20
+
21
+ ### Features
22
+
23
+ * ** sdk:** return raw schemas instead of strings ([ 2990e7b] ( https://github.com/cloudgraphdev/sdk/commit/2990e7b6ec6784b08ebb1c4ad8c00300ae98f520 ) )
24
+
1
25
## [ 0.21.1] ( https://github.com/cloudgraphdev/sdk/compare/0.21.0...0.21.1 ) (2022-07-12)
2
26
3
27
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @cloudgraph/sdk" ,
3
- "version" : " 0.21 .1" ,
3
+ "version" : " 0.22.0-beta .1" ,
4
4
"description" : " SDK for cloud graph providers and cli" ,
5
5
"main" : " dist/src/index.js" ,
6
6
"types" : " dist/src/index.d.ts" ,
Original file line number Diff line number Diff line change
1
+ import { DocumentNode } from 'graphql'
1
2
import inquirer from 'inquirer'
2
3
3
4
import { Logger } from '../logger'
@@ -20,7 +21,7 @@ export default abstract class Provider {
20
21
throw new Error ( 'Function configure has not been defined' )
21
22
}
22
23
23
- getSchema ( ) : string {
24
+ getSchema ( ) : DocumentNode {
24
25
throw new Error ( 'Function getSchema has not been defined' )
25
26
}
26
27
You can’t perform that action at this time.
0 commit comments