Small improvements to Monday.com Node

This commit is contained in:
Jan Oberhauser
2020-03-28 00:34:39 +01:00
parent 65c33cedc0
commit 6042fd9d26
10 changed files with 46 additions and 43 deletions

View File

@@ -0,0 +1,17 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class MondayComApi implements ICredentialType {
name = 'mondayComApi';
displayName = 'Monday.com API';
properties = [
{
displayName: 'Token V2',
name: 'apiToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}