mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
88 lines
1.8 KiB
TypeScript
88 lines
1.8 KiB
TypeScript
import type { 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',
|
|
},
|
|
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,
|
|
},
|
|
};
|
|
}
|