n8n/packages/nodes-base/nodes/Wekan/GenericFunctions.ts
agobrech c7133ecd3f
fix(core): Deduplicate error handling in nodes (#4319)
* Fix issue with isAxios property

* 🥅 Deduplicate errors handeling improve errors for credentials

* 🎨 correctly throws error
2022-11-11 11:32:43 +01:00

32 lines
799 B
TypeScript

import { IExecuteFunctions, IHookFunctions, ILoadOptionsFunctions } from 'n8n-core';
import { OptionsWithUri } from 'request';
import { IDataObject, JsonObject, NodeApiError, NodeOperationError } from 'n8n-workflow';
export async function apiRequest(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
method: string,
endpoint: string,
body: object,
query?: IDataObject,
// tslint:disable-next-line:no-any
): Promise<any> {
const credentials = await this.getCredentials('wekanApi');
query = query || {};
const options: OptionsWithUri = {
headers: {
Accept: 'application/json',
},
method,
body,
qs: query,
uri: `${credentials.url}/api/${endpoint}`,
json: true,
};
return await this.helpers.requestWithAuthentication.call(this, 'wekanApi', options);
}