mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
refactor: Overhaul nodes-testing setup - Part 3 (no-changelog) (#14967)
This commit is contained in:
committed by
GitHub
parent
3e43f9f8bc
commit
979f9e6327
@@ -117,7 +117,7 @@ export async function execute(
|
||||
const relativePath =
|
||||
uploadColumnType === 'image' ? uploadLink.img_relative_path : uploadLink.file_relative_path;
|
||||
|
||||
const options = this.getNodeParameter('options', index) as IDataObject;
|
||||
const options = this.getNodeParameter('options', index);
|
||||
|
||||
// get server url
|
||||
const credentials: any = await this.getCredentials('seaTableApi');
|
||||
|
||||
@@ -57,7 +57,7 @@ export async function execute(
|
||||
// get parameters
|
||||
const tableName = this.getNodeParameter('tableName', index) as string;
|
||||
const rowId = this.getNodeParameter('rowId', index) as string;
|
||||
const options = this.getNodeParameter('options', index) as IDataObject;
|
||||
const options = this.getNodeParameter('options', index);
|
||||
|
||||
// get collaborators
|
||||
const collaborators = await getBaseCollaborators.call(this);
|
||||
|
||||
@@ -71,7 +71,7 @@ export async function execute(
|
||||
// get parameters
|
||||
const tableName = this.getNodeParameter('tableName', index) as string;
|
||||
const viewName = this.getNodeParameter('viewName', index) as string;
|
||||
const options = this.getNodeParameter('options', index) as IDataObject;
|
||||
const options = this.getNodeParameter('options', index);
|
||||
|
||||
// get collaborators
|
||||
const collaborators = await getBaseCollaborators.call(this);
|
||||
|
||||
@@ -96,7 +96,7 @@ export async function execute(
|
||||
const searchColumn = this.getNodeParameter('searchColumn', index) as string;
|
||||
const searchTerm = this.getNodeParameter('searchTerm', index) as string | number;
|
||||
let searchTermString = String(searchTerm);
|
||||
const options = this.getNodeParameter('options', index) as IDataObject;
|
||||
const options = this.getNodeParameter('options', index);
|
||||
|
||||
// get collaborators
|
||||
const collaborators = await getBaseCollaborators.call(this);
|
||||
|
||||
Reference in New Issue
Block a user