n8n-nodes-exact-online-v1
Version:
Exact Online Community node for n8n
39 lines (38 loc) • 1.39 kB
TypeScript
import { IExecuteFunctions } from 'n8n-core';
import { ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class ExactOnline implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getDivisions(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
getServices(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
getResources(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
getOperations(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
getFields(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
getFieldsFilter(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
getFieldsData(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}