Skip to content

Commit b1d3b17

Browse files
authored
Merge pull request #39 from cloudgraphdev/beta
release 0.23.0
2 parents 83a392b + e30fc46 commit b1d3b17

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# [0.23.0-beta.1](https://github.com/cloudgraphdev/sdk/compare/0.22.1...0.23.0-beta.1) (2023-07-18)
2+
3+
4+
### Features
5+
6+
* **api:** add errors to result interface ([6b66fce](https://github.com/cloudgraphdev/sdk/commit/6b66fcefc6a6f237ea07b8e66d5a7583191e4b2e))
7+
8+
# [0.23.0-alpha.1](https://github.com/cloudgraphdev/sdk/compare/0.22.1...0.23.0-alpha.1) (2023-07-18)
9+
10+
11+
### Features
12+
13+
* **api:** add errors to result interface ([6b66fce](https://github.com/cloudgraphdev/sdk/commit/6b66fcefc6a6f237ea07b8e66d5a7583191e4b2e))
14+
115
## [0.22.1](https://github.com/cloudgraphdev/sdk/compare/0.22.0...0.22.1) (2022-11-25)
216

317

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.22.1",
3+
"version": "0.23.0-beta.1",
44
"description": "SDK for cloud graph providers and cli",
55
"main": "dist/src/index.js",
66
"types": "dist/src/index.d.ts",

src/types/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,16 @@ export interface Entity {
6363
data: any[] | any
6464
}
6565

66+
export interface ProviderError {
67+
service: string
68+
function: string
69+
message: string
70+
}
71+
6672
export interface ProviderData {
6773
entities: Entity[]
6874
connections: { [key: string]: ServiceConnection[] }
75+
errors?: ProviderError[]
6976
}
7077

7178
export type LoggerInput = string | { [key: string]: any } | unknown

0 commit comments

Comments
 (0)