Clearbit node

This commit is contained in:
Ricardo Espinoza
2020-01-26 23:27:14 -05:00
parent 5d89998eb1
commit c9d5208d48
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: '',
},
];
}