nodejs-connected-drive
Version:
NodeJS client for BMW Connected Drive
18 lines (17 loc) • 749 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RemoteService = void 0;
/** Enum of remote services that can be executed via the API. Eg: CLIMATE_NOW */
var RemoteService;
(function (RemoteService) {
/** Flash headlights */
RemoteService["LIGHT_FLASH"] = "LIGHT_FLASH";
/** Lock the doors */
RemoteService["DOOR_LOCK"] = "DOOR_LOCK";
/** Unlock the doors */
RemoteService["DOOR_UNLOCK"] = "DOOR_UNLOCK";
/** Signal with the horn */
RemoteService["HORN_BLOW"] = "HORN_BLOW";
/** Start heating or cooling the car depending on the temperature outside */
RemoteService["CLIMATE_NOW"] = "CLIMATE_NOW";
})(RemoteService = exports.RemoteService || (exports.RemoteService = {}));