n8n
Version:
n8n Workflow Automation Tool
9 lines (8 loc) • 386 B
TypeScript
export declare class EvalThreadCredentialAllowlistService {
private readonly byThread;
private readonly testBypassByThread;
set(threadId: string, credentialIds: string[], bypassCredentialTest?: string[]): void;
get(threadId: string): string[] | undefined;
shouldBypassTest(threadId: string, credentialId: string): boolean;
clearThread(threadId: string): void;
}