mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
35 lines
933 B
TypeScript
35 lines
933 B
TypeScript
import type { IExecuteFunctions, IHookFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
|
|
|
import type { 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 this.helpers.requestWithAuthentication.call(this, 'twakeCloudApi', options);
|
|
}
|