mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
✨ Add Mailcheck Node (#1690)
* 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>
This commit is contained in:
18
packages/nodes-base/credentials/MailcheckApi.credentials.ts
Normal file
18
packages/nodes-base/credentials/MailcheckApi.credentials.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
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: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user