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

19 lines
344 B
TypeScript
Raw Normal View History

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