ldap-authentication
Advanced tools
Comparing version 2.3.1 to 2.3.2
@@ -0,11 +1,6 @@ | ||
import { ClientOptions } from 'ldapjs' | ||
declare module 'ldap-authentication' { | ||
type LDAPOpts = { | ||
url: string | ||
tlsOptions?: { | ||
rejectUnauthorized: boolean | ||
} | ||
connectTimeout?: number | ||
} | ||
export type AuthenticationOptions = { | ||
ldapOpts: LDAPOpts | ||
export interface AuthenticationOptions { | ||
ldapOpts: ClientOptions | ||
userDn?: string | ||
@@ -18,3 +13,3 @@ adminDn?: string | ||
verifyUserExists?: boolean | ||
starttls?: Boolean | ||
starttls?: boolean | ||
groupsSearchBase?: string | ||
@@ -21,0 +16,0 @@ groupClass?: string |
{ | ||
"name": "ldap-authentication", | ||
"version": "2.3.1", | ||
"version": "2.3.2", | ||
"description": "A simple async nodejs library for LDAP user authentication", | ||
@@ -42,4 +42,4 @@ "main": "index.js", | ||
"devDependencies": { | ||
"jasmine": "^4.3.0" | ||
"jasmine": "^4.4.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
38289
935