Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Airtop/transport/index.ts

44 lines
1.0 KiB
TypeScript

import type {
IDataObject,
IExecuteFunctions,
ILoadOptionsFunctions,
IHttpRequestMethods,
IHttpRequestOptions,
} from 'n8n-workflow';
import type { IAirtopResponse } from './types';
import { BASE_URL, N8N_VERSION } from '../constants';
const defaultHeaders = {
'Content-Type': 'application/json',
'x-airtop-sdk-environment': 'n8n',
'x-airtop-sdk-version': N8N_VERSION,
};
export async function apiRequest<T extends IAirtopResponse = IAirtopResponse>(
this: IExecuteFunctions | ILoadOptionsFunctions,
method: IHttpRequestMethods,
endpoint: string,
body: IDataObject = {},
query: IDataObject = {},
): Promise<T> {
const options: IHttpRequestOptions = {
headers: defaultHeaders,
method,
body,
qs: query,
url: `${BASE_URL}${endpoint}`,
json: true,
};
if (Object.keys(body).length === 0) {
delete options.body;
}
return await this.helpers.httpRequestWithAuthentication.call<
IExecuteFunctions | ILoadOptionsFunctions,
[string, IHttpRequestOptions],
Promise<T>
>(this, 'airtopApi', options);
}