File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 1+ # [ 0.22.0-alpha.1] ( https://github.com/cloudgraphdev/sdk/compare/0.21.1...0.22.0-alpha.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.21.1] ( https://github.com/cloudgraphdev/sdk/compare/0.21.0...0.21.1 ) (2022-07-12)
14+
15+
16+ ### Bug Fixes
17+
18+ * Added validations for null arrays ([ 32ad697] ( https://github.com/cloudgraphdev/sdk/commit/32ad697c8206590e4b036d34dea678c8992610b6 ) )
19+
120## [ 0.21.1-beta.1] ( https://github.com/cloudgraphdev/sdk/compare/0.21.0...0.21.1-beta.1 ) (2022-07-12)
221
322
Original file line number Diff line number Diff line change 11{
22 "name" : " @cloudgraph/sdk" ,
3- "version" : " 0.21.1-beta .1" ,
3+ "version" : " 0.22.0-alpha .1" ,
44 "description" : " SDK for cloud graph providers and cli" ,
55 "main" : " dist/src/index.js" ,
66 "types" : " dist/src/index.d.ts" ,
Original file line number Diff line number Diff line change 1+ import { DocumentNode } from 'graphql'
12import inquirer from 'inquirer'
23
34import { Logger } from '../logger'
@@ -20,7 +21,7 @@ export default abstract class Provider {
2021 throw new Error ( 'Function configure has not been defined' )
2122 }
2223
23- getSchema ( ) : string {
24+ getSchema ( ) : DocumentNode {
2425 throw new Error ( 'Function getSchema has not been defined' )
2526 }
2627
You can’t perform that action at this time.
0 commit comments