UNPKG

sjursen-digital-watchtower

Version:

A TypeScript Node.js SDK for Watchtower, an Intelligence as a Service (IaaS) platform that uses Google's Gemini AI model to transform traditional logging into an active intelligence system with predictive analytics and automated decision-making capabiliti

18 lines 509 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HealthEndpoint = void 0; const base_1 = require("../base"); class HealthEndpoint extends base_1.BaseEndpoint { constructor(client) { super(client, '/health'); } /** * Check the health status of the API * @returns Promise with the health status response */ async check() { return this.get(''); } } exports.HealthEndpoint = HealthEndpoint; //# sourceMappingURL=handler.js.map