🔀 Merge branch 'feature/affinity' of https://github.com/RicardoE105/n8n into RicardoE105-feature/affinity

This commit is contained in:
Jan Oberhauser
2020-03-03 15:15:16 +01:00
10 changed files with 1365 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class AffinityApi implements ICredentialType {
name = 'affinityApi';
displayName = 'Affinity API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}