refactor: Overhaul nodes-testing setup - Part 3 (no-changelog) (#14967)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2025-04-29 17:42:21 +02:00
committed by GitHub
parent 3e43f9f8bc
commit 979f9e6327
241 changed files with 1868 additions and 2013 deletions

View File

@@ -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');

View File

@@ -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);

View File

@@ -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);

View File

@@ -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);