@types/ldapjs
Advanced tools
Comparing version 3.0.4 to 3.0.5
@@ -121,3 +121,3 @@ /// <reference types="node" /> | ||
bind(dn: string, password: string, callback: CallBack): void; | ||
bind(dn: string, password: string, controls: Control | Array<Control>, callback: CallBack): void; | ||
bind(dn: string, password: string, controls: Control | Control[], callback: CallBack): void; | ||
@@ -138,3 +138,3 @@ /** | ||
add(name: string, entry: Object, callback: ErrorCallback): void; | ||
add(name: string, entry: Object, controls: Control | Array<Control>, callback: ErrorCallback): void; | ||
add(name: string, entry: Object, controls: Control | Control[], callback: ErrorCallback): void; | ||
@@ -156,3 +156,3 @@ /** | ||
value: string, | ||
controls: Control | Array<Control>, | ||
controls: Control | Control[], | ||
callback: CompareCallback, | ||
@@ -170,3 +170,3 @@ ): void; | ||
del(name: string, callback: ErrorCallback): void; | ||
del(name: string, controls: Control | Array<Control>, callback: ErrorCallback): void; | ||
del(name: string, controls: Control | Control[], callback: ErrorCallback): void; | ||
@@ -187,3 +187,3 @@ /** | ||
exop(name: string, value: string | Buffer, callback: ExopCallback): void; | ||
exop(name: string, value: string | Buffer, controls: Control | Array<Control>, callback: ExopCallback): void; | ||
exop(name: string, value: string | Buffer, controls: Control | Control[], callback: ExopCallback): void; | ||
@@ -199,7 +199,7 @@ /** | ||
*/ | ||
modify(name: string, change: Change | Array<Change>, callback: ErrorCallback): void; | ||
modify(name: string, change: Change | Change[], callback: ErrorCallback): void; | ||
modify( | ||
name: string, | ||
change: Change | Array<Change>, | ||
controls: Control | Array<Control>, | ||
change: Change | Change[], | ||
controls: Control | Control[], | ||
callback: ErrorCallback, | ||
@@ -223,3 +223,3 @@ ): void; | ||
modifyDN(name: string, newName: string, callback: ErrorCallback): void; | ||
modifyDN(name: string, newName: string, controls: Control | Array<Control>, callback: ErrorCallback): void; | ||
modifyDN(name: string, newName: string, controls: Control | Control[], callback: ErrorCallback): void; | ||
@@ -247,7 +247,7 @@ /** | ||
search(base: string, options: SearchOptions, callback: SearchCallBack, _bypass: boolean): void; | ||
search(base: string, options: SearchOptions, controls: Control | Array<Control>, callback: SearchCallBack): void; | ||
search(base: string, options: SearchOptions, controls: Control | Control[], callback: SearchCallBack): void; | ||
search( | ||
base: string, | ||
options: SearchOptions, | ||
controls: Control | Array<Control>, | ||
controls: Control | Control[], | ||
callback: SearchCallBack, | ||
@@ -260,4 +260,4 @@ _bypass: boolean, | ||
*/ | ||
starttls(options: Object, controls: Control | Array<Control>, callback: CallBack): void; | ||
starttls(options: Object, controls: Control | Array<Control>, callback: CallBack, _bypass: boolean): void; | ||
starttls(options: Object, controls: Control | Control[], callback: CallBack): void; | ||
starttls(options: Object, controls: Control | Control[], callback: CallBack, _bypass: boolean): void; | ||
@@ -264,0 +264,0 @@ /** |
{ | ||
"name": "@types/ldapjs", | ||
"version": "3.0.4", | ||
"version": "3.0.5", | ||
"description": "TypeScript definitions for ldapjs", | ||
@@ -40,4 +40,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ldapjs", | ||
}, | ||
"typesPublisherContentHash": "8381a3d301d4097da097271aa8535c433503231f1aa5c151d9d16b4546e1be99", | ||
"typesPublisherContentHash": "7aecab0b4a4f9941de714ad11a55d487166a3e529447e3b5ae4f8fa23a2d7c71", | ||
"typeScriptVersion": "4.5" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 07 Nov 2023 09:09:38 GMT | ||
* Last updated: Mon, 20 Nov 2023 23:36:24 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node) | ||
@@ -14,0 +14,0 @@ |
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
25225