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

18 lines
312 B
TypeScript
Raw Normal View History

2020-03-10 09:42:57 -07:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class CalendlyApi implements ICredentialType {
name = 'calendlyApi';
displayName = 'Calendly API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}