Skip to content

Commit

Permalink
feat(connector-besu): expose API client and OpenAPI code for web builds
Browse files Browse the repository at this point in the history
1. We were only exporting the API client and the related data model type
definitions for NodeJS builds but not for the web.
2. This made it so that you couldn't import/use the Besu API client from
a front-end application such as Angular or React.

Signed-off-by: Peter Somogyvari <[email protected]>
  • Loading branch information
petermetz committed Jun 27, 2024
1 parent 5cbebad commit 199c1f0
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
export {};
export {
BesuApiClient,
BesuApiClientOptions,
} from "./api-client/besu-api-client";

export * from "./generated/openapi/typescript-axios/api";

0 comments on commit 199c1f0

Please sign in to comment.