mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
18597808f3
* Add a new dropcontact node * Improvements to #2389 * ⚡ Add credentials verification * ⚡ Small improvement * ⚡ set default time to 45 seconds * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Improvements * 🐛 Set siren and language correctly Co-authored-by: PaulineDropcontact <pauline@dropcontact.io> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
19 lines
356 B
TypeScript
19 lines
356 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class DropcontactApi implements ICredentialType {
|
|
name = 'dropcontactApi';
|
|
displayName = 'Dropcontact API';
|
|
documentationUrl = 'dropcontact';
|
|
properties = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|