n8n-nodes-close-crm
Version:
N8N community node for Close CRM integration with comprehensive lead, opportunity, task, note, and call management
15 lines (14 loc) • 837 B
TypeScript
import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class Close implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getLeadStatuses(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getOpportunityStatuses(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getCustomFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getCustomFieldChoices(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getSmartViews(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}