n8n-nodes-binalyze-air
Version:
Binalyze AIR nodes for automating DFIR with n8n workflows
12 lines • 533 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.api = void 0;
const helpers_1 = require("../../utils/helpers");
exports.api = {
async checkAuth(context, credentials) {
const requestOptions = (0, helpers_1.buildRequestOptionsWithErrorHandling)(credentials, 'GET', '/api/public/auth/check');
const response = await (0, helpers_1.makeApiRequestWithErrorHandling)(context, requestOptions, 'check authentication');
return response;
}
};
//# sourceMappingURL=auth.js.map