UNPKG

n8n-nodes-close-crm

Version:

N8N community node for Close CRM integration with comprehensive lead, opportunity, task, note, call management, and enhanced triggers for workflow automation

46 lines (45 loc) 3.92 kB
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[]>; getSmartViews(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getUsers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getSingleChoiceFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getMultipleChoiceFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getTextFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getNumberFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getDateFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getDateTimeFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getSingleUserFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getMultipleUserFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getSingleContactFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getMultipleContactFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getFieldsByType(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getFieldChoices(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getAllChoiceValues(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getCachedUsers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getContactTextFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getContactNumberFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getContactDateFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getContactSingleChoiceFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getContactMultipleChoiceFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getContactAllChoiceValues(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getContactSingleUserFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getContactMultipleUserFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getCustomActivityTypes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getCustomActivityTextFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getCustomActivityRichTextFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getCustomActivityNumberFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getCustomActivityDateFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getCustomActivitySingleChoiceFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getCustomActivityMultipleChoiceFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getCustomActivityAllChoiceValues(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getCustomActivitySingleUserFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getCustomActivityMultipleUserFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }