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

This commit is contained in:
Jan Oberhauser
2019-11-22 07:13:11 +01:00
11 changed files with 2084 additions and 2 deletions

View File

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