Skip to content

Commit 7178ebe

Browse files
author
Mathieu Bour
committed
feat(types): export ClientOptions interface
Bump version to 0.1.4
1 parent 1e99c2d commit 7178ebe

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [Version 0.1.4 - Export `ClientOptions` interface](https://github.com/csquare-ai/ldapjs-client/releases/tag/0.1.4)
4+
5+
- **feat**(types): export `ClientOptions` interface
6+
37
## [Version 0.1.3 - Fix Optional Controls](https://github.com/csquare-ai/ldapjs-client/releases/tag/0.1.3)
48

59
- **fix(controls)**: skip controls for `modify` and `del`

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@csquare/ldapjs-client",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "Promisified wrapper around the ldapjs client.",
55
"keywords": [
66
"ldap",

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export class Client extends EventEmitter {
152152
}
153153
}
154154

155-
interface ClientOptions extends _ClientOptions {
155+
export interface ClientOptions extends _ClientOptions {
156156
tlsOptions?: ConnectionOptions;
157157
}
158158

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { createClient, Client } from './client';
1+
export { createClient, Client, ClientOptions } from './client';

0 commit comments

Comments
 (0)