mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
* Add Mailcheck integration * compress logo * Add mailcheck node info * ⚡ Improvements Co-authored-by: bugagashenkj <bugagashenkj@gmail.com> Co-authored-by: Nosov Konstantin <nosov@nodeart.io>
19 lines
348 B
TypeScript
19 lines
348 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class MailcheckApi implements ICredentialType {
|
|
name = 'mailcheckApi';
|
|
displayName = 'Mailcheck API';
|
|
documentationUrl = 'mailcheck';
|
|
properties = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|