Skip to content

Commit

Permalink
v15.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielburnworth committed Nov 2, 2023
1 parent 4f87623 commit 056a832
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dist/farmbot.js
Expand Up @@ -454,7 +454,7 @@ var Farmbot = /** @class */ (function () {
enumerable: false,
configurable: true
});
Farmbot.VERSION = "15.8.3";
Farmbot.VERSION = "15.8.4";
return Farmbot;
}());
exports.Farmbot = Farmbot;
2 changes: 1 addition & 1 deletion dist/farmbot_single_file.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/farmbot_single_file.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/interfaces.d.ts
Expand Up @@ -26,7 +26,7 @@ export interface BotStateTree {
} | undefined;
}
/** Microcontroller board. */
export type FirmwareHardware = "none" | "arduino" | "express_k10" | "express_k11" | "farmduino_k14" | "farmduino_k15" | "farmduino_k16" | "farmduino_k17" | "farmduino";
export type FirmwareHardware = "none" | "arduino" | "express_k10" | "express_k11" | "express_k12" | "farmduino_k14" | "farmduino_k15" | "farmduino_k16" | "farmduino_k17" | "farmduino";
/** FarmBot motor and encoder positions. */
export type LocationName = "position" | "scaled_encoders" | "raw_encoders";
export type AxisState = "idle" | "begin" | "accelerate" | "cruise" | "decelerate" | "stop" | "crawl";
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "farmbot",
"version": "15.8.3",
"version": "15.8.4",
"description": "Farmbot Javascript client.",
"browserslist": "defaults",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/farmbot.ts
Expand Up @@ -45,7 +45,7 @@ export class Farmbot {
private config: Conf;
public client?: MqttClient;
public resources: ResourceAdapter;
static VERSION = "15.8.3";
static VERSION = "15.8.4";

constructor(input: FarmbotConstructorParams) {
this._events = {};
Expand Down
1 change: 1 addition & 0 deletions src/interfaces.ts
Expand Up @@ -30,6 +30,7 @@ export type FirmwareHardware =
| "arduino"
| "express_k10"
| "express_k11"
| "express_k12"
| "farmduino_k14"
| "farmduino_k15"
| "farmduino_k16"
Expand Down

0 comments on commit 056a832

Please sign in to comment.