diff --git a/credentials/ExampleCredentials.credentials.ts b/credentials/ExampleCredentials.credentials.ts index 7e84255..2484f47 100644 --- a/credentials/ExampleCredentials.credentials.ts +++ b/credentials/ExampleCredentials.credentials.ts @@ -1,8 +1,4 @@ -import { - ICredentialType, - NodePropertyTypes, -} from 'n8n-workflow'; - +import { ICredentialType, NodePropertyTypes } from 'n8n-workflow'; export class ExampleCredentials implements ICredentialType { name = 'exampleCredentials'; diff --git a/nodes/ExampleNode/ExampleNode.node.ts b/nodes/ExampleNode/ExampleNode.node.ts index df7d60c..9d471db 100644 --- a/nodes/ExampleNode/ExampleNode.node.ts +++ b/nodes/ExampleNode/ExampleNode.node.ts @@ -1,10 +1,5 @@ import { IExecuteFunctions } from 'n8n-core'; -import { - INodeExecutionData, - INodeType, - INodeTypeDescription, -} from 'n8n-workflow'; - +import { INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; export class ExampleNode implements INodeType { description: INodeTypeDescription = { @@ -33,9 +28,7 @@ export class ExampleNode implements INodeType { ], }; - async execute(this: IExecuteFunctions): Promise { - const items = this.getInputData(); let item: INodeExecutionData; @@ -52,6 +45,5 @@ export class ExampleNode implements INodeType { } return this.prepareOutputData(items); - } } diff --git a/nodes/HttpBin/HttpBin.node.json b/nodes/HttpBin/HttpBin.node.json index cc9eb82..1ed6939 100644 --- a/nodes/HttpBin/HttpBin.node.json +++ b/nodes/HttpBin/HttpBin.node.json @@ -2,10 +2,7 @@ "node": "n8n-nodes-base.httpbin", "nodeVersion": "1.0", "codexVersion": "1.0", - "categories": [ - "Development", - "Developer Tools" - ], + "categories": ["Development", "Developer Tools"], "resources": { "credentialDocumentation": [ { diff --git a/nodes/HttpBin/HttpVerbDescriptions.ts b/nodes/HttpBin/HttpVerbDescriptions.ts index 265d131..80efc5b 100644 --- a/nodes/HttpBin/HttpVerbDescriptions.ts +++ b/nodes/HttpBin/HttpVerbDescriptions.ts @@ -64,7 +64,7 @@ const getOperation: INodeProperties[] = [ { name: 'arguments', default: {}, - description: 'The request\'s query parameters', + description: "The request's query parameters", displayName: 'Query Parameters', displayOptions: { show: { @@ -115,8 +115,7 @@ const deleteOperation: INodeProperties[] = [ { name: 'typeofData', default: 'queryParameter', - description: - 'Select type of data to send [Query Parameter Arguments, JSON-Body]', + description: 'Select type of data to send [Query Parameter Arguments, JSON-Body]', displayName: 'Type of Data', displayOptions: { show: { @@ -140,7 +139,7 @@ const deleteOperation: INodeProperties[] = [ { name: 'arguments', default: {}, - description: 'The request\'s query parameters', + description: "The request's query parameters", displayName: 'Query Parameters', displayOptions: { show: { @@ -187,7 +186,7 @@ const deleteOperation: INodeProperties[] = [ { name: 'arguments', default: {}, - description: 'The request\'s JSON properties', + description: "The request's JSON properties", displayName: 'JSON Object', displayOptions: { show: {