diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index c64b76e137..647169b986 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Missing dependency declarations. +- Invalid re-export. ## [@waku/core@0.0.7] - 2022-12-15 diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index 427dac0d4e..e704ec4c40 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -14,11 +14,7 @@ export * as waku_filter from "./lib/filter/index.js"; export { wakuFilter } from "./lib/filter/index.js"; export * as waku_light_push from "./lib/light_push/index.js"; -export { - wakuLightPush, - LightPushCodec, - PushResponse, -} from "./lib/light_push/index.js"; +export { wakuLightPush, LightPushCodec } from "./lib/light_push/index.js"; export * as waku_relay from "./lib/relay/index.js"; export { wakuRelay } from "./lib/relay/index.js";