Expose `Enviroment` & `Protocol` enums to pass to `getStatusFleetNodes`

This commit is contained in:
Franck Royer 2021-05-18 13:45:49 +10:00
parent 537a2b73a7
commit 2cd87b561d
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
2 changed files with 4 additions and 1 deletions

View File

@ -17,6 +17,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **Breaking**: Modify `WakuStore.queryHistory()` to accept one `Object` instead of multiple individual arguments.
- `getStatusFleetNodes` return prod nodes by default, instead of test nodes.
### Fixed
- Expose `Enviroment` and `Protocol` enums to pass to `getStatusFleetNodes`.
## [0.3.0] - 2021-05-15
### Added

View File

@ -1,4 +1,4 @@
export { getStatusFleetNodes } from './lib/discover';
export { getStatusFleetNodes, Environment, Protocol } from './lib/discover';
export { Waku } from './lib/waku';
export { WakuMessage } from './lib/waku_message';