From d7dadaac6ac6ebae0023fc690752f6e6be1eccc9 Mon Sep 17 00:00:00 2001 From: Kashish Mittal Date: Fri, 6 Sep 2024 09:34:37 -0400 Subject: [PATCH] update api reports Signed-off-by: Kashish Mittal --- plugins/catalog-backend-module-ldap/api-report.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/catalog-backend-module-ldap/api-report.md b/plugins/catalog-backend-module-ldap/api-report.md index 40bb9d81ae..a025055a11 100644 --- a/plugins/catalog-backend-module-ldap/api-report.md +++ b/plugins/catalog-backend-module-ldap/api-report.md @@ -95,7 +95,8 @@ export class LdapClient { tls?: TLSConfig, ): Promise; getRootDSE(): Promise; - getVendor(): Promise; + // Warning: (ae-forgotten-export) The symbol "VendorConfig" needs to be exported by the entry point index.d.ts + getVendor(vendorConfig: VendorConfig | undefined): Promise; search(dn: string, options: SearchOptions): Promise; searchStreaming( dn: string, @@ -200,6 +201,7 @@ export type LdapProviderConfig = { users: UserConfig[]; groups: GroupConfig[]; schedule?: SchedulerServiceTaskScheduleDefinition; + vendor?: VendorConfig; }; // @public @@ -225,6 +227,7 @@ export function readLdapOrg( client: LdapClient, userConfig: UserConfig[], groupConfig: GroupConfig[], + vendorConfig: VendorConfig | undefined, options: { groupTransformer?: GroupTransformer; userTransformer?: UserTransformer;