Comparing version 1.2.3 to 1.3.0
@@ -0,1 +1,5 @@ | ||
### 1.3.0 | ||
* Add Entry interface for SearchEntry. Thanks @hikaru7719! | ||
### 1.2.3 | ||
@@ -2,0 +6,0 @@ |
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
260188
4219