Files
alighasami 3d5eaf9445
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

56 lines
1.3 KiB
TypeScript

import {
ApplicationError,
type IHttpRequestMethods,
type IDataObject,
type IExecuteFunctions,
type IHookFunctions,
type ILoadOptionsFunctions,
type IWebhookFunctions,
type IRequestOptions,
} from 'n8n-workflow';
import { BASE_URL } from './constants';
export async function lonescaleApiRequest(
this: IExecuteFunctions | IWebhookFunctions | IHookFunctions | ILoadOptionsFunctions,
method: IHttpRequestMethods,
resource: string,
body: IDataObject = {},
query: IDataObject = {},
uri?: string,
) {
const endpoint = `${BASE_URL}`;
const credentials = await this.getCredentials('loneScaleApi');
const options: IRequestOptions = {
headers: {
'Content-Type': 'application/json',
'X-API-KEY': credentials?.apiKey,
},
method,
body,
qs: query,
uri: uri || `${endpoint}${resource}`,
json: true,
};
if (!Object.keys(body).length) {
delete options.body;
}
if (!Object.keys(query).length) {
delete options.qs;
}
try {
return await this.helpers.requestWithAuthentication.call(this, 'loneScaleApi', options);
} catch (error) {
if (error.response) {
const errorMessage =
error.response.body.message || error.response.body.description || error.message;
throw new ApplicationError(
`Autopilot error response [${error.statusCode}]: ${errorMessage}`,
{ level: 'warning' },
);
}
throw error;
}
}