n8n-nodes-everest-tms
Version:
Everest TMS n8n integration
16 lines • 938 B
TypeScript
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
export declare class Everest implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getServices(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getSkills(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getStatuses(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getClients(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getAgents(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getEstablishments(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
//# sourceMappingURL=Everest.node.d.ts.map