Skip to content

Commit

Permalink
Merge pull request #39 from cloudgraphdev/beta
Browse files Browse the repository at this point in the history
release 0.23.0
  • Loading branch information
tyler-dunkel committed Jul 18, 2023
2 parents 83a392b + e30fc46 commit b1d3b17
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# [0.23.0-beta.1](https://github.com/cloudgraphdev/sdk/compare/0.22.1...0.23.0-beta.1) (2023-07-18)


### Features

* **api:** add errors to result interface ([6b66fce](https://github.com/cloudgraphdev/sdk/commit/6b66fcefc6a6f237ea07b8e66d5a7583191e4b2e))

# [0.23.0-alpha.1](https://github.com/cloudgraphdev/sdk/compare/0.22.1...0.23.0-alpha.1) (2023-07-18)


### Features

* **api:** add errors to result interface ([6b66fce](https://github.com/cloudgraphdev/sdk/commit/6b66fcefc6a6f237ea07b8e66d5a7583191e4b2e))

## [0.22.1](https://github.com/cloudgraphdev/sdk/compare/0.22.0...0.22.1) (2022-11-25)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudgraph/sdk",
"version": "0.22.1",
"version": "0.23.0-beta.1",
"description": "SDK for cloud graph providers and cli",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand Down
7 changes: 7 additions & 0 deletions src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,16 @@ export interface Entity {
data: any[] | any
}

export interface ProviderError {
service: string
function: string
message: string
}

export interface ProviderData {
entities: Entity[]
connections: { [key: string]: ServiceConnection[] }
errors?: ProviderError[]
}

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

0 comments on commit b1d3b17

Please sign in to comment.