mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
f37d6ba03b
* ⚡ Initial commit * 👕 Fix linting issue * ⚡ Add import button * ⚡ Remove ligh versioning * ⚡ Improvements * ⚡ Improvements * 🔥 Remove HttpRequest2 file used for testing * 🐛 Fix building issue * ⚡ Small improvement * 👕 Fix linting issue * 🔥 Remove HttpRequest2 from loader * ⚡ Update package-lock.json * ⚡ Improvements * ⚡ Small change * 🐛 Fix issue retrieving splitIntoItems * 🐛 Fix issue retrieving neverError parameter * 🐛 Fix issue with displayOptions * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Move cURL section to its own component * ⚡ Improvements * ⚡ Improvements * ⚡ Add fix for batching in all versions * ⚡ Add notice to cURL modal * 🔥 Remove comments * ⚡ Improvements * ⚡ Type curl-to-json endpoint * ⚡ Fix typo * 🔥 Remove console.logs * ⚡ Fix typo in curl-to-json endpoint * ⚡ Improvements * ⚡ Improvements * ⚡ Update package-lock.json * ⚡ Rename import modal constant * ⚡ Add return types to methods * ⚡ Add CSS modules to ImportParameter component * ⚡ Rename ImportParameter component to use kebab-case * ⚡ Improvements * ⚡ update package-lock.json * ⚡ Fix linting issues * Fix issue with css reference in ImportParameter component * ⚡ Small improvements * ⚡ Rename redirects to redirect * ⚡ Allow to set multiple parameters on valueChanged * 👕 Fix linting issue * 🐛 Add mistakenly removed openExistingCredentials * ⚡ Improve curl regex * ⚡ Keep headers as defined in the cURL command * ⚡ Account for all protocols supported by cURL * ⚡ Add tests * 🔥 Remove unnecessary lines * ⚡ Add more testing * ⚡ Add noDataExpression to dependent fields * 🐛 Fix bug not handling multipart-form data correctly * ⚡ Change error messages * 🐛 Fix response format string for empty values * Fix typo
32 lines
951 B
TypeScript
32 lines
951 B
TypeScript
import { INodeTypeBaseDescription, INodeVersionedType } from 'n8n-workflow';
|
|
|
|
import { HttpRequestV1 } from './V1/HttpRequestV1.node';
|
|
|
|
import { HttpRequestV2 } from './V2/HttpRequestV2.node';
|
|
|
|
import { HttpRequestV3 } from './V3/HttpRequestV3.node';
|
|
|
|
import { NodeVersionedType } from '../../src/NodeVersionedType';
|
|
|
|
export class HttpRequest extends NodeVersionedType {
|
|
constructor() {
|
|
const baseDescription: INodeTypeBaseDescription = {
|
|
displayName: 'HTTP Request',
|
|
name: 'httpRequest',
|
|
icon: 'fa:at',
|
|
group: ['output'],
|
|
subtitle: '={{$parameter["requestMethod"] + ": " + $parameter["url"]}}',
|
|
description: 'Makes an HTTP request and returns the response data',
|
|
defaultVersion: 3,
|
|
};
|
|
|
|
const nodeVersions: INodeVersionedType['nodeVersions'] = {
|
|
1: new HttpRequestV1(baseDescription),
|
|
2: new HttpRequestV2(baseDescription),
|
|
3: new HttpRequestV3(baseDescription),
|
|
};
|
|
|
|
super(nodeVersions, baseDescription);
|
|
}
|
|
}
|