mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
4d4ab7943b
* Emelia node added * Minor improvements on Emelia nodes * Fix nodes and credentials listing * Fix multi-line imports * Apply cosmetic changes to node description * Apply cosmetic changes to node execute method * Fix linting details * Apply cosmetic changes to trigger node * Replace PNG with SVG icon * Bring generic functions in line with codebase * Refactor resources and add operations * Fix typo in GraphQL call function * Add campaign description * Add contact list description * ⚡ Improvements * ⚡ Minor improvements to Emelia Nodes Co-authored-by: Charles LECALIER <clecalie@student.42.fr> Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
19 lines
336 B
TypeScript
19 lines
336 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class EmeliaApi implements ICredentialType {
|
|
name = 'emeliaApi';
|
|
displayName = 'Emelia API';
|
|
documentationUrl = 'emelia';
|
|
properties = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|