n8n/packages/nodes-base/nodes/Twake/GenericFunctions.ts
Iván Ovejero 52f38df867
refactor: Remove unused vars to fix build (no-changelog) (#4584)
* 🔥 Remove unused vars to fix build

* 👕 Make unused vars severity conditional
2022-11-11 16:07:50 +01:00

35 lines
929 B
TypeScript

import { IExecuteFunctions, IHookFunctions, ILoadOptionsFunctions } from 'n8n-core';
import { OptionsWithUri } from 'request';
/**
* Make an API request to Twake
*
*/
export async function twakeApiRequest(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
method: string,
resource: string,
body: object,
query?: object,
uri?: string,
) {
const options: OptionsWithUri = {
headers: {},
method,
body,
qs: query,
uri: uri || `https://plugins.twake.app/plugins/n8n${resource}`,
json: true,
};
// if (authenticationMethod === 'cloud') {
// } else {
// const credentials = await this.getCredentials('twakeServerApi');
// options.auth = { user: credentials!.publicId as string, pass: credentials!.privateApiKey as string };
// options.uri = `${credentials!.hostUrl}/api/v1${resource}`;
// }
return await this.helpers.requestWithAuthentication.call(this, 'twakeCloudApi', options);
}