Add SendGrid node (#1321)

* Add SendGrid node

* 👕Fix lint issue

*  Improvements

*  Improvements

*  Improvements

*  Fix SendGrid-Node

Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
Harshil Agrawal
2021-01-20 04:46:25 +05:30
committed by GitHub
parent 4d446229c3
commit 70eea2d5ca
7 changed files with 1026 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class SendGridApi implements ICredentialType {
name = 'sendGridApi';
displayName = 'SendGrid API';
documentationUrl = 'sendgrid';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}