mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
44 lines
844 B
TypeScript
44 lines
844 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
export class MailgunApi implements ICredentialType {
|
|
name = 'mailgunApi';
|
|
displayName = 'Mailgun API';
|
|
documentationUrl = 'mailgun';
|
|
properties = [
|
|
{
|
|
displayName: 'API Domain',
|
|
name: 'apiDomain',
|
|
type: 'options' as NodePropertyTypes,
|
|
options: [
|
|
{
|
|
name: 'api.eu.mailgun.net',
|
|
value: 'api.eu.mailgun.net',
|
|
},
|
|
{
|
|
name: 'api.mailgun.net',
|
|
value: 'api.mailgun.net',
|
|
},
|
|
],
|
|
default: 'api.mailgun.net',
|
|
description: 'The configured mailgun API domain.',
|
|
},
|
|
{
|
|
displayName: 'Email Domain',
|
|
name: 'emailDomain',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
description: '.',
|
|
},
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|