🚀 node-setup

This commit is contained in:
Ricardo Espinoza
2019-11-12 15:48:45 -05:00
parent 883d0936cb
commit a3594ae7a2
5 changed files with 187 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class Mailchimp implements ICredentialType {
name = 'mailchimpApi';
displayName = 'Mailchimp API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Datacenter',
name: 'datacenter',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}