n8n/packages/nodes-base/credentials/PhantombusterApi.credentials.ts
Ricardo Espinoza 403f1009a6
Add Phantombuster Node (#1274)
*  Phantombuster Node

*  Small improvements

*  Small fix

*  Improvements to Phantombuster Node

Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2021-01-02 20:16:18 +01:00

19 lines
364 B
TypeScript

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: '',
},
];
}