File tree Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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+
6672export interface ProviderData {
6773 entities : Entity [ ]
6874 connections : { [ key : string ] : ServiceConnection [ ] }
75+ errors ?: ProviderError [ ]
6976}
7077
7178export type LoggerInput = string | { [ key : string ] : any } | unknown
You can’t perform that action at this time.
0 commit comments