From b61ff785f0eb34b45ee4aba2466316eac5728f42 Mon Sep 17 00:00:00 2001 From: Brian Inoa Date: Mon, 20 Jun 2022 14:21:52 +0200 Subject: [PATCH] :zap: Fix incorrect defaults :zap: Remove Auth resource --- nodes/HttpBin/HttpBin.node.ts | 6 +----- nodes/HttpBin/HttpVerbDescriptions.ts | 4 ++-- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/nodes/HttpBin/HttpBin.node.ts b/nodes/HttpBin/HttpBin.node.ts index 7737f7c..3f6fa51 100644 --- a/nodes/HttpBin/HttpBin.node.ts +++ b/nodes/HttpBin/HttpBin.node.ts @@ -52,11 +52,7 @@ export class HttpBin implements INodeType { { name: "HTTP Verbs", value: "httpverbs", - }, - { - name: "Auth Methods", - value: "authmethods", - }, + } ], default: "httpverbs", }, diff --git a/nodes/HttpBin/HttpVerbDescriptions.ts b/nodes/HttpBin/HttpVerbDescriptions.ts index 9609101..03f2df9 100644 --- a/nodes/HttpBin/HttpVerbDescriptions.ts +++ b/nodes/HttpBin/HttpVerbDescriptions.ts @@ -49,7 +49,7 @@ export const httpVerbOperations: Array = [ const getOperation: Array = [ { name: "typeofData", - default: "queryParameterOption", + default: "queryParameter", description: "Select type of data to send [Query Parameters]", displayName: "Type of Data", displayOptions: { @@ -124,7 +124,7 @@ const getOperation: Array = [ const deleteOperation: Array = [ { name: "typeofData", - default: "queryParameterOption", + default: "queryParameter", description: "Select type of data to send [Query Parameter Arguments, JSON-Body]", displayName: "Type of Data",