Skip to content

Commit

Permalink
v6.5.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
RickCarlino committed Aug 8, 2018
1 parent d2f4086 commit 8e24178
Show file tree
Hide file tree
Showing 11 changed files with 77 additions and 78 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ npm install farmbot
```
<script src="./dist/farmbot_single_file.js"></script>
<script>
var farmbot123 = new = new fbjs.Farmbot({ token: "foo.bar.baz" });
var farmbot123 = new fbjs.Farmbot({ token: "foo.bar.baz" });
<script>
```

Expand Down
3 changes: 2 additions & 1 deletion dist/corpus.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,14 @@ export interface SendMessage {
comment?: string | undefined;
body?: SendMessageBodyItem[] | undefined;
}
export declare type ExecuteBodyItem = VariableDeclaration;
export interface Execute {
kind: "execute";
args: {
sequence_id: number;
};
comment?: string | undefined;
body?: undefined;
body?: ExecuteBodyItem[] | undefined;
}
export declare type IfBodyItem = Pair;
export interface If {
Expand Down
2 changes: 1 addition & 1 deletion dist/corpus.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use strict";
// THIS INTERFACE WAS AUTO GENERATED ON 2018-07-27
// THIS INTERFACE WAS AUTO GENERATED ON 2018-08-08
// DO NOT EDIT THIS FILE.
// IT WILL BE OVERWRITTEN ON EVERY CELERYSCRIPT UPGRADE.
Object.defineProperty(exports, "__esModule", { value: true });
Expand Down
4 changes: 1 addition & 3 deletions dist/farmbot.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,7 @@ export declare class Farmbot {
readPin: (args: {
pin_number: number | Corpus.NamedPin;
label: string;
pin_mode: number; /** Checks for updates on a particular Farmware plugin when given the name of
* a farmware. `updateFarmware("take-photo")`
*/
pin_mode: number;
}) => Promise<{}>;
/** Reverse the value of a digital pin. */
togglePin: (args: {
Expand Down
2 changes: 1 addition & 1 deletion dist/farmbot.js
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ var Farmbot = /** @class */ (function () {
enumerable: true,
configurable: true
});
Farmbot.VERSION = "6.4.3";
Farmbot.VERSION = "6.5.0-rc1";
return Farmbot;
}());
exports.Farmbot = Farmbot;
128 changes: 64 additions & 64 deletions dist/farmbot_single_file.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "farmbot",
"version": "6.4.3",
"version": "6.5.0-rc1",
"description": "Farmbot Javascript client.",
"scripts": {
"build": "./build.sh",
Expand Down
6 changes: 3 additions & 3 deletions src/corpus.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// THIS INTERFACE WAS AUTO GENERATED ON 2018-07-27
// THIS INTERFACE WAS AUTO GENERATED ON 2018-08-08
// DO NOT EDIT THIS FILE.
// IT WILL BE OVERWRITTEN ON EVERY CELERYSCRIPT UPGRADE.

Expand Down Expand Up @@ -129,14 +129,14 @@ export interface SendMessage {
body?: SendMessageBodyItem[] | undefined;
}


export type ExecuteBodyItem = VariableDeclaration;
export interface Execute {
kind: "execute";
args: {
sequence_id: number;
};
comment?: string | undefined;
body?: undefined;
body?: ExecuteBodyItem[] | undefined;
}

export type IfBodyItem = Pair;
Expand Down
2 changes: 1 addition & 1 deletion src/farmbot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class Farmbot {
private config: Conf;
public client?: MqttClient;
public resources: ResourceAdapter;
static VERSION = "6.4.3";
static VERSION = "6.5.0-rc1";

constructor(input: FarmbotConstructorParams) {
this._events = {};
Expand Down

0 comments on commit 8e24178

Please sign in to comment.