n8n-nodes-gohighlevel
Version:
n8n node for GoHighLevel API v2
22 lines (21 loc) • 811 B
TypeScript
import { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class GoHighLevelV2 implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getCustomFields(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
getOpportunityCustomFields(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
getContactCustomFields(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}