Socket
Socket
Sign inDemoInstall

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.4.1 to 0.5.0

6

dist/index.d.ts

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

modification is just a plain old JS object with the values you want. */
interface Change {
export interface ModifyChange<T = any> {
operation: "add" | "delete" | "replace";
modification: {
[key: string]: any;
[key in keyof T]: any;
};

@@ -30,3 +30,3 @@ }

dn: string;
changes: Change[];
changes: ModifyChange[];
controls?: any;

@@ -33,0 +33,0 @@ }

{
"name": "ldap-ts-client",
"version": "0.4.1",
"version": "0.5.0",
"description": "Type-safe LDAP client written in typescript",

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

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

modification is just a plain old JS object with the values you want. */
interface Change {
export interface ModifyChange<T = any> {
operation: "add" | "delete" | "replace";
modification: {
[key: string]: any;
[key in keyof T]: any;
};

@@ -33,3 +33,3 @@ }

dn: string;
changes: Change[];
changes: ModifyChange[];
controls?: any;

@@ -36,0 +36,0 @@ }

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