Fix incorrect defaults

 Remove Auth resource
This commit is contained in:
Brian Inoa 2022-06-20 14:21:52 +02:00
commit b61ff785f0
2 changed files with 3 additions and 7 deletions

View file

@ -52,11 +52,7 @@ export class HttpBin implements INodeType {
{ {
name: "HTTP Verbs", name: "HTTP Verbs",
value: "httpverbs", value: "httpverbs",
}, }
{
name: "Auth Methods",
value: "authmethods",
},
], ],
default: "httpverbs", default: "httpverbs",
}, },

View file

@ -49,7 +49,7 @@ export const httpVerbOperations: Array<INodeProperties> = [
const getOperation: Array<INodeProperties> = [ const getOperation: Array<INodeProperties> = [
{ {
name: "typeofData", name: "typeofData",
default: "queryParameterOption", default: "queryParameter",
description: "Select type of data to send [Query Parameters]", description: "Select type of data to send [Query Parameters]",
displayName: "Type of Data", displayName: "Type of Data",
displayOptions: { displayOptions: {
@ -124,7 +124,7 @@ const getOperation: Array<INodeProperties> = [
const deleteOperation: Array<INodeProperties> = [ const deleteOperation: Array<INodeProperties> = [
{ {
name: "typeofData", name: "typeofData",
default: "queryParameterOption", default: "queryParameter",
description: description:
"Select type of data to send [Query Parameter Arguments, JSON-Body]", "Select type of data to send [Query Parameter Arguments, JSON-Body]",
displayName: "Type of Data", displayName: "Type of Data",