mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor(core): Allow custom types on getCredentials (no-changelog) (#10567)
This commit is contained in:
committed by
GitHub
parent
52c574d83f
commit
be52176585
@@ -4,7 +4,7 @@ import { escapeSqlIdentifier } from '../helpers/utils';
|
||||
import type { MysqlNodeCredentials } from '../helpers/interfaces';
|
||||
|
||||
export async function getColumns(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const credentials = (await this.getCredentials('mySql')) as MysqlNodeCredentials;
|
||||
const credentials = await this.getCredentials<MysqlNodeCredentials>('mySql');
|
||||
const nodeOptions = this.getNodeParameter('options', 0) as IDataObject;
|
||||
|
||||
const pool = await createPool.call(this, credentials, nodeOptions);
|
||||
|
||||
Reference in New Issue
Block a user