@qrvey/health-checker
Version:
 
16 lines • 555 B
JavaScript
;
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