Skip to content

Commit 0585e4e

Browse files
authored
Merge pull request #38 from cloudgraphdev/alpha
beta release
2 parents 5caceca + cc3c925 commit 0585e4e

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# [0.23.0-alpha.1](https://github.com/cloudgraphdev/sdk/compare/0.22.1...0.23.0-alpha.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.22.1](https://github.com/cloudgraphdev/sdk/compare/0.22.0...0.22.1) (2022-11-25)
9+
10+
11+
### Bug Fixes
12+
13+
* add uri-js to resolutions to fix cve vulnerability ([5290e0a](https://github.com/cloudgraphdev/sdk/commit/5290e0a828f1302e3fc16e5dddded36fb013d08d))
14+
* cve vulnerabilities remediations ([c0c6200](https://github.com/cloudgraphdev/sdk/commit/c0c620079958ec562797bbf76561c028754fcfa1))
15+
116
## [0.22.1-beta.1](https://github.com/cloudgraphdev/sdk/compare/0.22.0...0.22.1-beta.1) (2022-11-25)
217

318

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-beta.1",
3+
"version": "0.23.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/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)