n8n/packages/nodes-base/nodes/Twake/GenericFunctions.ts
Tomi Turtiainen 9a1cc56806
fix: Set '@typescript-eslint/return-await' rule to 'always' for node code (no-changelog) (#8363)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
2024-01-17 17:08:50 +02:00

34 lines
942 B
TypeScript

import type { OptionsWithUri } from 'request';
import type { IExecuteFunctions, IHookFunctions, ILoadOptionsFunctions } from 'n8n-workflow';
/**
* 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);
}