update api reports

Signed-off-by: Kashish Mittal <kmittal@redhat.com>
This commit is contained in:
Kashish Mittal
2024-09-06 09:53:08 -04:00
parent d7dadaac6a
commit 79ca3b0cbe
2 changed files with 7 additions and 1 deletions
@@ -95,7 +95,6 @@ export class LdapClient {
tls?: TLSConfig,
): Promise<LdapClient>;
getRootDSE(): Promise<SearchEntry | undefined>;
// Warning: (ae-forgotten-export) The symbol "VendorConfig" needs to be exported by the entry point index.d.ts
getVendor(vendorConfig: VendorConfig | undefined): Promise<LdapVendor>;
search(dn: string, options: SearchOptions): Promise<SearchEntry[]>;
searchStreaming(
@@ -272,4 +271,10 @@ export type UserTransformer = (
config: UserConfig,
user: SearchEntry,
) => Promise<UserEntity | undefined>;
// @public
export type VendorConfig = {
dnAttributeName: string;
uuidAttributeName: string;
};
```
@@ -23,6 +23,7 @@ export type {
UserConfig,
BindConfig,
TLSConfig,
VendorConfig,
} from './config';
export type { LdapVendor } from './vendors';
export {