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

19 lines
352 B
TypeScript
Raw Normal View History

2020-03-26 12:39:31 -07:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class MondayComApi implements ICredentialType {
name = 'mondayComApi';
2020-03-26 12:39:31 -07:00
displayName = 'Monday.com API';
documentationUrl = 'mondayCom';
2020-03-26 12:39:31 -07:00
properties = [
{
displayName: 'Token V2',
name: 'apiToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}