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
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
import type { IExecuteFunctions, IHookFunctions } from 'n8n-core';
|
|
|
|
import type { IDataObject, JsonObject } from 'n8n-workflow';
|
|
import { NodeApiError } from 'n8n-workflow';
|
|
|
|
/**
|
|
* Make an API request to Twilio
|
|
*
|
|
*/
|
|
export async function moceanApiRequest(
|
|
this: IHookFunctions | IExecuteFunctions,
|
|
method: string,
|
|
endpoint: string,
|
|
body: IDataObject,
|
|
query?: IDataObject,
|
|
): Promise<any> {
|
|
const credentials = await this.getCredentials('moceanApi');
|
|
|
|
if (query === undefined) {
|
|
query = {};
|
|
}
|
|
|
|
if (method === 'POST') {
|
|
body['mocean-api-key'] = credentials['mocean-api-key'];
|
|
body['mocean-api-secret'] = credentials['mocean-api-secret'];
|
|
body['mocean-resp-format'] = 'JSON';
|
|
} else if (method === 'GET') {
|
|
query['mocean-api-key'] = credentials['mocean-api-key'];
|
|
query['mocean-api-secret'] = credentials['mocean-api-secret'];
|
|
query['mocean-resp-format'] = 'JSON';
|
|
}
|
|
|
|
const options = {
|
|
method,
|
|
form: body,
|
|
qs: query,
|
|
uri: `https://rest.moceanapi.com${endpoint}`,
|
|
json: true,
|
|
};
|
|
|
|
try {
|
|
return await this.helpers.request(options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
|
}
|
|
}
|