@bedrijfsdatanl/n8n-nodes-prospectpro
Version:
n8n node for ProspectPro - Identify Dutch B2B ProspectPro in rapid time
8 lines (7 loc) • 853 B
TypeScript
import type { IDataObject, IExecuteFunctions, IHookFunctions, IHttpRequestMethods, ILoadOptionsFunctions, INodePropertyOptions, IPollFunctions } from 'n8n-workflow';
export declare function apiRequest(this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions | IPollFunctions, method: IHttpRequestMethods, endpoint: string, body?: object, query?: IDataObject): Promise<any>;
export declare function getProspectProTags(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
export declare function getProspectProAudiences(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
export declare function getProspectProOwners(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
export declare function dateToEpochSeconds(dateString: string): number;
export declare function epochSecondsToDate(epochSeconds: number): string;