Add LignvaNex Node (#1194)

*  Add LignvaNex node

*  Small improvement to LingvaNext Node

Improvements to #1191

Co-authored-by: Tanay Pant <tanaypant@protonmail.com>
This commit is contained in:
Ricardo Espinoza
2020-11-24 17:30:43 -05:00
committed by GitHub
parent 991379066b
commit be828a3808
6 changed files with 505 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class LingvaNexApi implements ICredentialType {
name = 'lingvaNexApi';
displayName = 'LingvaNex API';
documentationUrl = 'lingvaNex';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}