UNPKG

dt-common-device

Version:

A secure and robust device management library for IoT applications

23 lines (22 loc) 1.02 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EntityType = exports.AlertSeverity = exports.AlertCategory = void 0; var AlertCategory; (function (AlertCategory) { AlertCategory["READINESS"] = "READINESS"; AlertCategory["OPERATIONS"] = "OPERATIONS"; AlertCategory["SECURITY"] = "SECURITY"; AlertCategory["ENERGY"] = "ENERGY"; AlertCategory["OTHER"] = "OTHER"; })(AlertCategory || (exports.AlertCategory = AlertCategory = {})); var AlertSeverity; (function (AlertSeverity) { AlertSeverity["INFO"] = "INFO"; AlertSeverity["LOW"] = "LOW"; AlertSeverity["MEDIUM"] = "MEDIUM"; AlertSeverity["HIGH"] = "HIGH"; AlertSeverity["CRITICAL"] = "CRITICAL"; })(AlertSeverity || (exports.AlertSeverity = AlertSeverity = {})); // Re-export EntityType from issue.types.ts to avoid duplication var issue_types_1 = require("./issue.types"); Object.defineProperty(exports, "EntityType", { enumerable: true, get: function () { return issue_types_1.EntityType; } });