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

19 lines
313 B
TypeScript
Raw Normal View History

2019-11-15 12:10:51 -08:00
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: '',
},
];
}