Add first basic support for Pipedrive

This commit is contained in:
Jan Oberhauser
2019-06-23 21:21:44 +02:00
parent cbe115c07f
commit f26199f690
4 changed files with 1254 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class PipedriveApi implements ICredentialType {
name = 'pipedriveApi';
displayName = 'Pipedrive API';
properties = [
{
displayName: 'API Token',
name: 'apiToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}