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

16 lines
337 B
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
2020-01-26 20:27:14 -08:00
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: '',
},
];
}