chore: Lintfix nodes-base (#16877)

This commit is contained in:
Iván Ovejero
2025-07-01 15:05:40 +02:00
committed by GitHub
parent 38c2e6184c
commit 422aa82524
56 changed files with 64 additions and 88 deletions

View File

@@ -5,9 +5,9 @@ import type {
INodeTypeDescription,
} from 'n8n-workflow';
import { getSites, getCollections, getFields } from '../GenericFunctions';
import { router } from './actions/router';
import { versionDescription } from './actions/versionDescription';
import { getSites, getCollections, getFields } from '../GenericFunctions';
export class WebflowV2 implements INodeType {
description: INodeTypeDescription;

View File

@@ -76,7 +76,7 @@ export async function execute(
let responseData;
for (let i = 0; i < items.length; i++) {
try {
const returnAll = this.getNodeParameter('returnAll', i) as boolean;
const returnAll = this.getNodeParameter('returnAll', i);
const collectionId = this.getNodeParameter('collectionId', i) as string;
const qs: IDataObject = {};