UNPKG

farmbot

Version:
20 lines (19 loc) 606 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.rpcRequest = exports.Priority = void 0; const uuid_1 = require("./uuid"); var Priority; (function (Priority) { Priority[Priority["HIGHEST"] = 9000] = "HIGHEST"; Priority[Priority["NORMAL"] = 600] = "NORMAL"; Priority[Priority["LOWEST"] = 300] = "LOWEST"; })(Priority || (exports.Priority = Priority = {})); const rpcRequest = (body, priority = Priority.NORMAL) => ({ kind: "rpc_request", args: { label: (0, uuid_1.uuid)(), priority }, body }); exports.rpcRequest = rpcRequest;