UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

49 lines 1.45 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MailjetEmailApi = void 0; class MailjetEmailApi { name = 'mailjetEmailApi'; displayName = 'Mailjet Email API'; documentationUrl = 'mailjet'; properties = [ { displayName: 'API Key', name: 'apiKey', type: 'string', typeOptions: { password: true }, default: '', }, { displayName: 'Secret Key', name: 'secretKey', type: 'string', typeOptions: { password: true }, default: '', }, { displayName: 'Sandbox Mode', name: 'sandboxMode', type: 'boolean', default: false, description: 'Whether to allow to run the API call in a Sandbox mode, where all validations of the payload will be done without delivering the message', }, ]; authenticate = { type: 'generic', properties: { auth: { username: '={{$credentials.apiKey}}', password: '={{$credentials.secretKey}}', }, }, }; test = { request: { baseURL: 'https://api.mailjet.com', url: '/v3/REST/template', method: 'GET', }, }; } exports.MailjetEmailApi = MailjetEmailApi; //# sourceMappingURL=MailjetEmailApi.credentials.js.map