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.0.3 to 0.1.0

1

dist/index.d.ts

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

constructor(config: IClientConfig);
isConnected: () => boolean;
/** @return a connected ldap client that is useful for use flexibility of [ldap.js](http://ldapjs.org/) directly. */

@@ -29,0 +30,0 @@ bind: () => Promise<ldap.Client>;

@@ -11,2 +11,5 @@ "use strict";

constructor(config) {
this.isConnected = () => {
return this.client.connected;
};
/** @return a connected ldap client that is useful for use flexibility of [ldap.js](http://ldapjs.org/) directly. */

@@ -13,0 +16,0 @@ this.bind = async () => {

2

package.json
{
"name": "ldap-ts-client",
"version": "0.0.3",
"version": "0.1.0",
"description": "Type-safe LDAP client written in typescript",

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

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

public isConnected = (): boolean => {
return this.client.connected;
};
/** @return a connected ldap client that is useful for use flexibility of [ldap.js](http://ldapjs.org/) directly. */

@@ -43,0 +47,0 @@ public bind = async (): Promise<ldap.Client> => {

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