mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
89 lines
1.8 KiB
TypeScript
89 lines
1.8 KiB
TypeScript
|
import { INodeProperties, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
||
|
|
||
|
import { contactFields, contactNotes, contactOperations } from './description/ContactDescription';
|
||
|
import { opportunityFields, opportunityOperations } from './description/OpportunityDescription';
|
||
|
import { taskFields, taskOperations } from './description/TaskDescription';
|
||
|
import {
|
||
|
getPipelineStages,
|
||
|
getTimezones,
|
||
|
getUsers,
|
||
|
highLevelApiPagination,
|
||
|
} from './GenericFunctions';
|
||
|
|
||
|
const ressources: INodeProperties[] = [
|
||
|
{
|
||
|
displayName: 'Resource',
|
||
|
name: 'resource',
|
||
|
type: 'options',
|
||
|
noDataExpression: true,
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Contact',
|
||
|
value: 'contact',
|
||
|
},
|
||
|
{
|
||
|
name: 'Opportunity',
|
||
|
value: 'opportunity',
|
||
|
},
|
||
|
{
|
||
|
name: 'Task',
|
||
|
value: 'task',
|
||
|
},
|
||
|
],
|
||
|
default: 'contact',
|
||
|
required: true,
|
||
|
},
|
||
|
];
|
||
|
|
||
|
export class HighLevel implements INodeType {
|
||
|
description: INodeTypeDescription = {
|
||
|
displayName: 'HighLevel',
|
||
|
name: 'highLevel',
|
||
|
icon: 'file:highLevel.svg',
|
||
|
group: ['transform'],
|
||
|
version: 1,
|
||
|
description: 'Consume HighLevel API',
|
||
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||
|
defaults: {
|
||
|
name: 'HighLevel',
|
||
|
color: '#f1be40',
|
||
|
},
|
||
|
inputs: ['main'],
|
||
|
outputs: ['main'],
|
||
|
credentials: [
|
||
|
{
|
||
|
name: 'highLevelApi',
|
||
|
required: true,
|
||
|
},
|
||
|
],
|
||
|
requestDefaults: {
|
||
|
baseURL: 'https://rest.gohighlevel.com/v1',
|
||
|
headers: {
|
||
|
Accept: 'application/json',
|
||
|
'Content-Type': 'application/json',
|
||
|
},
|
||
|
},
|
||
|
requestOperations: {
|
||
|
pagination: highLevelApiPagination,
|
||
|
},
|
||
|
properties: [
|
||
|
...ressources,
|
||
|
...contactOperations,
|
||
|
...contactNotes,
|
||
|
...contactFields,
|
||
|
...opportunityOperations,
|
||
|
...opportunityFields,
|
||
|
...taskOperations,
|
||
|
...taskFields,
|
||
|
],
|
||
|
};
|
||
|
|
||
|
methods = {
|
||
|
loadOptions: {
|
||
|
getPipelineStages,
|
||
|
getUsers,
|
||
|
getTimezones,
|
||
|
},
|
||
|
};
|
||
|
}
|