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

19 lines
353 B
TypeScript
Raw Normal View History

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