directory.js

"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.orgDir = exports.nameLookup = exports._notes = void 0;
const tslib_1 = require("tslib");
/**
 * @file Directory
 * @module directory
 * @category Directory
 */
const notesf = tslib_1.__importStar(require("../notes/directory"));
exports._notes = notesf;
/**
 * Searches for each specified user name across all Domino® Directories and returns
 * a list of single text values for each specified user name.

 * @throws {Error} method not implemented
 * @TODO this needs to be implemented
 */
function nameLookup() {
    return notesf.NameLookup();
}
exports.nameLookup = nameLookup;
/**
 * In a Service Provider (xSP) environment, returns the name of the subdirectory
 * for the company with which the currently authenticated user is registered. Notes/
 * Domino retrieves this information from the organization's certifier document.
 * @throws {Error} no plans to implement
 */
function orgDir() {
    return notesf.OrgDir();
}
exports.orgDir = orgDir;
//# sourceMappingURL=directory.js.map