Add Tapfiliate Node (#1399)

*  Tapfiliate Node

*  Improvements

*  Minor improvements to Tapfiliate Node

Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
Ricardo Espinoza
2021-02-05 03:25:41 -05:00
committed by GitHub
parent b1ad897a86
commit f370569ccc
8 changed files with 1266 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class TapfiliateApi implements ICredentialType {
name = 'tapfiliateApi';
displayName = 'Tapfiliate API';
documentationUrl = 'tapfiliate';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
required: true,
type: 'string' as NodePropertyTypes,
default: '',
},
];
}