Skip to content

Commit e42c43c

Browse files
authored
Merge pull request #28 from cloudgraphdev/alpha
Beta release
2 parents 5c0754f + 22e9178 commit e42c43c

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

src/client/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { DocumentNode } from 'graphql'
12
import inquirer from 'inquirer'
23

34
import { 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

0 commit comments

Comments
 (0)