n8n-nodes-alegra-unofficial
Version:
Unofficial Alegra node for n8n - Community integration with Alegra's accounting platform. NOT OFFICIALLY SUPPORTED BY ALEGRA.
21 lines (20 loc) • 1.35 kB
TypeScript
import { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class Alegra implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getContacts(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getItems(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getTaxes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getBankAccounts(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getSellers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getCategories(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getAccountCategories(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getNumberTemplates(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getCostCenters(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getPriceLists(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getRetentions(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}