mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
* 👕 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 529ad72b051478fa1633aaf84b2864f2fdc7613c. * 👕 Fix severity
51 lines
1.0 KiB
TypeScript
51 lines
1.0 KiB
TypeScript
import type { IExecuteFunctions } from 'n8n-core';
|
|
|
|
import type { IDataObject } from 'n8n-workflow';
|
|
import { NodeApiError } from 'n8n-workflow';
|
|
|
|
import type { OptionsWithUri } from 'request';
|
|
|
|
/**
|
|
* Make an API request to SIGNL4
|
|
*
|
|
* @param {IHookFunctions | IExecuteFunctions} this
|
|
*
|
|
*/
|
|
|
|
export async function SIGNL4ApiRequest(
|
|
this: IExecuteFunctions,
|
|
method: string,
|
|
body: string,
|
|
query: IDataObject = {},
|
|
option: IDataObject = {},
|
|
): Promise<any> {
|
|
const credentials = await this.getCredentials('signl4Api');
|
|
|
|
const teamSecret = credentials?.teamSecret as string;
|
|
|
|
let options: OptionsWithUri = {
|
|
headers: {
|
|
Accept: '*/*',
|
|
},
|
|
method,
|
|
body,
|
|
qs: query,
|
|
uri: `https://connect.signl4.com/webhook/${teamSecret}`,
|
|
json: true,
|
|
};
|
|
|
|
if (!Object.keys(body).length) {
|
|
delete options.body;
|
|
}
|
|
if (!Object.keys(query).length) {
|
|
delete options.qs;
|
|
}
|
|
options = Object.assign({}, options, option);
|
|
|
|
try {
|
|
return await this.helpers.request(options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
}
|