Skip to content

Commit

Permalink
built v1.28.1
Browse files Browse the repository at this point in the history
  • Loading branch information
biwillia committed May 22, 2018
1 parent 590ab5a commit ba3bbb7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions dist/flexio.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Flex.io Javascript SDK v1.28.0 (https://github.com/flexiodata/flexio-sdk-js)
* Flex.io Javascript SDK v1.28.1 (https://github.com/flexiodata/flexio-sdk-js)
* (c) 2018 Gold Prairie LLC
*/
(function webpackUniversalModuleDefinition(root, factory) {
Expand Down Expand Up @@ -320,7 +320,7 @@ var Flexio = {
this.pipes = __webpack_require__(31).getPipesObject(this);
this.util = __webpack_require__(1).getUtilObject(this);
this._http = null;
this.version = this.util.isNodeJs() ? __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module \"../package.json\""); e.code = 'MODULE_NOT_FOUND'; throw e; }())).version : "1.28.0";
this.version = this.util.isNodeJs() ? __webpack_require__(!(function webpackMissingModule() { var e = new Error("Cannot find module \"../package.json\""); e.code = 'MODULE_NOT_FOUND'; throw e; }())).version : "1.28.1";

var getPipeConstructor = __webpack_require__(32).getPipeConstructor;
this.pipe = getPipeConstructor(this);
Expand Down Expand Up @@ -1291,7 +1291,9 @@ var task = function task(json) {
};

task.toCode = function (json, Flexio) {
return 'task(' + JSON.stringify(json, null, 2) + ')';
var params = JSON.parse(JSON.stringify(json));
delete params['eid'];
return 'task(' + JSON.stringify(params, null, 2) + ')';
};

module.exports = task;
Expand Down
Loading

0 comments on commit ba3bbb7

Please sign in to comment.