From 4998bfd3c726038e82d759ef5c3d4da8e07c38ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Wed, 6 Jul 2022 10:30:58 +0200 Subject: [PATCH] :zap: Add `action` to `HttpVerbDescription` --- nodes/HttpBin/HttpVerbDescription.ts | 2 ++ package.json | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/nodes/HttpBin/HttpVerbDescription.ts b/nodes/HttpBin/HttpVerbDescription.ts index 95bc8a1..c025130 100644 --- a/nodes/HttpBin/HttpVerbDescription.ts +++ b/nodes/HttpBin/HttpVerbDescription.ts @@ -17,6 +17,7 @@ export const httpVerbOperations: INodeProperties[] = [ { name: 'GET', value: 'get', + action: 'Perform a GET request', routing: { request: { method: 'GET', @@ -27,6 +28,7 @@ export const httpVerbOperations: INodeProperties[] = [ { name: 'DELETE', value: 'delete', + action: 'Perform a DELETE request', routing: { request: { method: 'DELETE', diff --git a/package.json b/package.json index 6d30295..ccf505b 100644 --- a/package.json +++ b/package.json @@ -43,8 +43,8 @@ "@typescript-eslint/parser": "^5.29.0", "eslint-plugin-n8n-nodes-base": "^1.2.0", "gulp": "^4.0.2", - "n8n-core": "^0.124.0", - "n8n-workflow": "^0.106.0", + "n8n-core": "^0.125.0", + "n8n-workflow": "^0.107.0", "prettier": "^2.7.1", "tslint": "^6.1.2", "typescript": "~4.6.0"