n8n/packages/nodes-base/credentials/ClearbitApi.credentials.ts

19 lines
340 B
TypeScript
Raw Normal View History

2020-01-26 20:27:14 -08:00
import {
ICredentialType,
INodeProperties,
2020-01-26 20:27:14 -08:00
} from 'n8n-workflow';
export class ClearbitApi implements ICredentialType {
name = 'clearbitApi';
displayName = 'Clearbit API';
documentationUrl = 'clearbit';
properties: INodeProperties[] = [
2020-01-26 20:27:14 -08:00
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
2020-01-26 20:27:14 -08:00
default: '',
},
];
}