balena-sdk
Version:
The Balena JavaScript SDK
14 lines (13 loc) • 673 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DeviceOverallStatus = void 0;
var DeviceOverallStatus;
(function (DeviceOverallStatus) {
DeviceOverallStatus["CONFIGURING"] = "configuring";
DeviceOverallStatus["INACTIVE"] = "inactive";
DeviceOverallStatus["POST_PROVISIONING"] = "post-provisioning";
DeviceOverallStatus["UPDATING"] = "updating";
DeviceOverallStatus["OPERATIONAL"] = "operational";
DeviceOverallStatus["DISCONNECTED"] = "disconnected";
DeviceOverallStatus["REDUCED_FUNCTIONALITY"] = "reduced-functionality";
})(DeviceOverallStatus || (exports.DeviceOverallStatus = DeviceOverallStatus = {}));