Update to support new features

This commit is contained in:
Jonathan Bennetts 2025-05-12 13:39:34 +01:00
commit 6ea8bac919
No known key found for this signature in database
8 changed files with 119 additions and 4305 deletions

View file

@ -1,4 +1,4 @@
import { INodeType, INodeTypeDescription } from 'n8n-workflow';
import { INodeType, INodeTypeDescription, NodeConnectionType } from 'n8n-workflow';
import { httpVerbFields, httpVerbOperations } from './HttpVerbDescription';
export class HttpBin implements INodeType {
@ -13,8 +13,8 @@ export class HttpBin implements INodeType {
defaults: {
name: 'HttpBin',
},
inputs: ['main'],
outputs: ['main'],
inputs: [NodeConnectionType.Main],
outputs: [NodeConnectionType.Main],
credentials: [
{
name: 'httpbinApi',