0.1.5 • Published 2 years ago

@types/ldapjs-client v0.1.5

Weekly downloads
236
License
MIT
Repository
github
Last release
2 years ago

Installation

npm install --save @types/ldapjs-client

Summary

This package contains type definitions for ldapjs-client (https://github.com/zont/ldapjs-client#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ldapjs-client.

index.d.ts

// Type definitions for ldapjs-client 0.1
// Project: https://github.com/zont/ldapjs-client#readme
// Definitions by: Valerio Coltrè <https://github.com/colthreepv>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.0

declare namespace LdapClient {
    interface Change {
        operation: 'add' | 'delete' | 'replace';
        modification: {
            [key: string]: any;
        };
    }

    interface SearchOptions {
        scope?: string | undefined;
        filter?: string | undefined;
        attributes?: string[] | undefined;
        sizeLimit?: number | undefined;
        timeLimit?: number | undefined;
        typesOnly?: boolean | undefined;
    }

    interface ClientOptions {
        url: string;
        tlsOptions?: object | undefined;
        timeout?: number | undefined;
    }
}

declare class LdapClient {
    constructor(options: LdapClient.ClientOptions);

    /**
     * Adds an entry to the LDAP server.
     */
    add(dn: string, entry: object): Promise<any>;

    /**
     * Performs a simple authentication against the server.
     */
    bind(dn: string, password: string): Promise<any>;

    /**
     * Deletes an entry from the LDAP server.
     */
    del(dn: string): Promise<any>;

    /**
     * Disconnect from the LDAP server and do not allow reconnection.
     *
     * If the client is instantiated with proper reconnection options, it's
     * possible to initiate new requests after a call to unbind since the client
     * will attempt to reconnect in order to fulfill the request.
     *
     * Calling destroy will prevent any further reconnection from occurring.
     */
    destroy(): Promise<void>;

    /**
     * Performs an LDAP modify against the server.
     *
     * @param dn the DN of the entry to modify.
     * @param change update to perform (can be [Change]).
     */
    modify(dn: string, change: LdapClient.Change): Promise<any>;

    /**
     * Performs an LDAP modifyDN against the server.
     */
    modifyDN(dn: string, newName: string): Promise<any>;

    /**
     * Performs an LDAP search against the server.
     *
     * Note that the defaults for options are a 'base' search.
     */
    search(base: string, options: LdapClient.SearchOptions): Promise<unknown[]>;

    /**
     * Unbinds this client from the LDAP server.
     *
     */
    unbind(): Promise<any>;
}

export = LdapClient;

Additional Details

  • Last updated: Thu, 08 Jul 2021 16:23:32 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Valerio Coltrè.

0.1.4

2 years ago

0.1.3

2 years ago

0.1.5

2 years ago

0.1.2

4 years ago

0.1.1

5 years ago

0.1.0

6 years ago