🔀 Merge branch 'ConvertKit' of https://github.com/MLH-Fellowship/n8n into MLH-Fellowship-ConvertKit

This commit is contained in:
Jan Oberhauser
2020-08-25 21:59:42 +02:00
11 changed files with 1837 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class ConvertKitApi implements ICredentialType {
name = 'convertKitApi';
displayName = 'ConvertKit API';
properties = [
{
displayName: 'API Secret',
name: 'apiSecret',
type: 'string' as NodePropertyTypes,
default: '',
typeOptions: {
password: true,
},
},
];
}