n8n/packages/nodes-base/credentials/PipedriveApi.credentials.ts
2019-06-23 21:21:44 +02:00

19 lines
320 B
TypeScript

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