Skip to content

Commit

Permalink
Export connector module (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-chambers authored Oct 24, 2024
1 parent c144271 commit 436fe9a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ This changelog documents the changes between release versions.
## [Unreleased]
Changes to be included in the next upcoming release

### Added
- Exported the `@hasura/ndc-lambda-sdk/connector` module to make it easier to build entirely new connectors that extend the existing functionality provided by the SDK ([#45](https://github.com/hasura/ndc-nodejs-lambda/pull/45))

## [1.8.0] - 2024-09-20
- Updated the NDC TypeScript SDK to v7.0.0 ([#44](https://github.com/hasura/ndc-nodejs-lambda/pull/44))
- Added support for exporting OpenTelemetry traces and metrics over GRPC. A new environment variable `OTEL_EXPORTER_OTLP_PROTOCOL` lets you switch between `http/protobuf` and `grpc`.
Expand Down
21 changes: 8 additions & 13 deletions ndc-lambda-sdk/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion ndc-lambda-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
],
"exports": {
".": "./dist/src/sdk.js",
"./host": "./dist/src/host.js"
"./host": "./dist/src/host.js",
"./connector": "./dist/src/connector.js"
},
"scripts": {
"build": "tsc",
Expand Down

0 comments on commit 436fe9a

Please sign in to comment.