n8n/packages/nodes-base/credentials/IntercomApi.credentials.ts

16 lines
337 B
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
2019-11-15 12:10:51 -08:00
export class IntercomApi implements ICredentialType {
name = 'intercomApi';
displayName = 'Intercom API';
documentationUrl = 'intercom';
properties: INodeProperties[] = [
2019-11-15 12:10:51 -08:00
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
2019-11-15 12:10:51 -08:00
default: '',
},
];
}