UNPKG

@qrvey/health-checker

Version:

![install size](https://packagephobia.com/badge?p=@qrvey/health-checker) ![coverage](https://img.shields.io/badge/unit_test_coverage-87%25-brightgreen)

16 lines 555 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SystemStatusGateway = void 0; const fetch_1 = require("@qrvey/fetch"); class SystemStatusGateway { static async getHealthReport(body) { const endpoint = `/api/system/v1/status`; const data = await fetch_1.FetchService.post(endpoint, body, { privateDomain: true, useApiKey: true, }); return data; } } exports.SystemStatusGateway = SystemStatusGateway; //# sourceMappingURL=systemStatusGateway.service.js.map