File tree 3 files changed +22
-1
lines changed
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
+
1
15
## [ 0.22.1] ( https://github.com/cloudgraphdev/sdk/compare/0.22.0...0.22.1 ) (2022-11-25)
2
16
3
17
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @cloudgraph/sdk" ,
3
- "version" : " 0.22 .1" ,
3
+ "version" : " 0.23.0-beta .1" ,
4
4
"description" : " SDK for cloud graph providers and cli" ,
5
5
"main" : " dist/src/index.js" ,
6
6
"types" : " dist/src/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -63,9 +63,16 @@ export interface Entity {
63
63
data : any [ ] | any
64
64
}
65
65
66
+ export interface ProviderError {
67
+ service : string
68
+ function : string
69
+ message : string
70
+ }
71
+
66
72
export interface ProviderData {
67
73
entities : Entity [ ]
68
74
connections : { [ key : string ] : ServiceConnection [ ] }
75
+ errors ?: ProviderError [ ]
69
76
}
70
77
71
78
export type LoggerInput = string | { [ key : string ] : any } | unknown
You can’t perform that action at this time.
0 commit comments