n8n-nodes-highlevelv2
Version:
n8n community node for HighLevel v2 API integration - comprehensive CRM, marketing automation, and business management platform
21 lines (20 loc) • 1.03 kB
TypeScript
import type { ILoadOptionsFunctions, INodeListSearchResult, INodeType, INodeTypeBaseDescription, INodeTypeDescription } from 'n8n-workflow';
import { getContacts, getPipelines, getPipelineStages, getSocialAccounts, getSubAccounts, getUsers } from './GenericFunctions';
export declare class HighLevelV2 implements INodeType {
description: INodeTypeDescription;
constructor(baseDescription: INodeTypeBaseDescription);
methods: {
loadOptions: {
getPipelines: typeof getPipelines;
getContacts: typeof getContacts;
getPipelineStages: typeof getPipelineStages;
getSocialAccounts: typeof getSocialAccounts;
getSubAccounts: typeof getSubAccounts;
getUsers: typeof getUsers;
};
listSearch: {
searchCustomFields(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
searchTimezones(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
};
};
}