Add Phantombuster Node (#1274)

*  Phantombuster Node

*  Small improvements

*  Small fix

*  Improvements to Phantombuster Node

Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
Ricardo Espinoza
2021-01-02 14:16:18 -05:00
committed by GitHub
parent 29107f130f
commit 403f1009a6
6 changed files with 801 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class PhantombusterApi implements ICredentialType {
name = 'phantombusterApi';
displayName = 'Phantombuster API';
documentationUrl = 'phantombuster';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}