clickup node and trigger

This commit is contained in:
Ricardo Espinoza
2020-01-18 17:19:31 -05:00
parent a5572eca9e
commit 7ec85f0376
8 changed files with 1127 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class ClickUpApi implements ICredentialType {
name = 'clickUpApi';
displayName = 'ClickUp API';
properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}