UNPKG

n8n-nodes-rd-station-crm

Version:

n8n community node for RD Station CRM: API v1 (private token) and API v2 (OAuth2) — contacts, deals, organizations, tasks, notes, pipelines, stages, products, custom fields, sources, campaigns, loss reasons, users, teams and a real webhook trigger.

17 lines (16 loc) 1.19 kB
import type { ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow'; export declare const loadOptions: { getOrganizations(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getUsers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getTeams(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getPipelines(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getStages(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getCampaigns(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getSources(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getLossReasons(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getProducts(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getContactCustomFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getDealCustomFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getOrganizationCustomFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getProductCustomFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; };