🔀 Merge branch 'feature/clearbit-node' of https://github.com/RicardoE105/n8n into RicardoE105-feature/clearbit-node

This commit is contained in:
Jan Oberhauser
2020-01-29 20:34:09 -08:00
7 changed files with 474 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class ClearbitApi implements ICredentialType {
name = 'clearbitApi';
displayName = 'Clearbit API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}