Socket
Socket
Sign inDemoInstall

ldapts

Package Overview
Dependencies
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ldapts - npm Package Compare versions

Comparing version 1.2.3 to 1.3.0

4

CHANGELOG.md

@@ -0,1 +1,5 @@

### 1.3.0
* Add Entry interface for SearchEntry. Thanks @hikaru7719!
### 1.2.3

@@ -2,0 +6,0 @@

6

dist/Client.d.ts

@@ -7,2 +7,3 @@ /// <reference types="node" />

import { Filter } from './filters/Filter';
import { Entry } from './messages';
export interface ClientOptions {

@@ -44,6 +45,3 @@ /**

export interface SearchResult {
searchEntries: {
dn: string;
[index: string]: string | string[];
}[];
searchEntries: Entry[];
searchReferences: string[];

@@ -50,0 +48,0 @@ }

@@ -9,2 +9,6 @@ import { BerReader } from 'asn1';

}
export interface Entry {
dn: string;
[index: string]: string | string[];
}
export declare class SearchEntry extends MessageResponse {

@@ -16,6 +20,3 @@ protocolOperation: ProtocolOperation;

parseMessage(reader: BerReader): void;
toObject(): {
dn: string;
[index: string]: string | string[];
};
toObject(): Entry;
}
{
"name": "ldapts",
"version": "1.2.3",
"version": "1.3.0",
"description": "LDAP client",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

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