n8n
Version:
n8n Workflow Automation Tool
15 lines (14 loc) • 751 B
TypeScript
import { OutboundHttp } from '@n8n/backend-network';
import type { User } from '@n8n/db';
import { CredentialsFinderService } from '../../../credentials/credentials-finder.service';
import { CredentialsService } from '../../../credentials/credentials.service';
export declare class BuilderModelLiveLookupService {
private readonly credentialsService;
private readonly credentialsFinderService;
private readonly outboundHttp;
constructor(credentialsService: CredentialsService, credentialsFinderService: CredentialsFinderService, outboundHttp: OutboundHttp);
list(user: User, projectId: string, credentialId: string, credentialType: string, provider: string): Promise<Array<{
name: string;
value: string;
}>>;
}