Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ldap-ts-client

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ldap-ts-client - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

2

dist/index.d.ts

@@ -30,3 +30,3 @@ import ldap, { SearchOptions, Control, SearchEntryObject } from "ldapjs";

bind(): Promise<ldap.Client>;
unbind(): Promise<unknown>;
unbind(): Promise<void>;
private connect;

@@ -33,0 +33,0 @@ /** @description raw search to provided full flexibility */

@@ -17,3 +17,2 @@ "use strict";

this.client = ldapjs_1.default.createClient(Object.assign(Object.assign({}, this.config), { log: this.config.logger }));
this.bind();
}

@@ -20,0 +19,0 @@ /** @return a connected ldap client that is useful for use flexibility of [ldap.js](http://ldapjs.org/) directly. */

{
"name": "ldap-ts-client",
"version": "0.2.0",
"version": "0.2.1",
"description": "Type-safe LDAP client written in typescript",

@@ -5,0 +5,0 @@ "repository": {

@@ -38,3 +38,2 @@ import ldap, { SearchOptions, Control, SearchEntryObject } from "ldapjs";

});
this.bind();
}

@@ -60,3 +59,3 @@

public async unbind() {
public async unbind(): Promise<void> {
this.logger?.trace("unbind()");

@@ -63,0 +62,0 @@ return new Promise((resolve, reject) => {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc