hunter node

This commit is contained in:
Ricardo Espinoza
2020-01-24 16:16:54 -05:00
parent 38de0af9b9
commit eab4df1afd
5 changed files with 410 additions and 0 deletions

View File

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