-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
84 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/*! | ||
* Flex.io Javascript SDK v1.11.0 (https://github.com/flexiodata/flexio-sdk-js) | ||
* Flex.io Javascript SDK v1.12.0 (https://github.com/flexiodata/flexio-sdk-js) | ||
* (c) 2017 Gold Prairie LLC | ||
*/ | ||
(function webpackUniversalModuleDefinition(root, factory) { | ||
|
@@ -17255,7 +17255,8 @@ module.exports = { | |
TASK_TYPE_SELECT: 'flexio.select', | ||
TASK_TYPE_SLEEP: 'flexio.sleep', | ||
TASK_TYPE_SORT: 'flexio.sort', | ||
TASK_TYPE_TRANSFORM: 'flexio.transform' | ||
TASK_TYPE_TRANSFORM: 'flexio.transform', | ||
TASK_TYPE_WRITE: 'flexio.write' | ||
}; | ||
|
||
/***/ }), | ||
|
@@ -18454,18 +18455,18 @@ var cfg = { | |
}; | ||
|
||
var Flexio = { | ||
version: __webpack_require__(67).version, | ||
version: __webpack_require__(68).version, | ||
|
||
_init: function _init() { | ||
this.connections = __webpack_require__(68).getConnectionsObject(this); | ||
this.pipes = __webpack_require__(69).getPipesObject(this); | ||
this.connections = __webpack_require__(69).getConnectionsObject(this); | ||
this.pipes = __webpack_require__(70).getPipesObject(this); | ||
this.util = __webpack_require__(1).getUtilObject(this); | ||
this._http = null; | ||
|
||
var getPipeConstructor = __webpack_require__(70).getPipeConstructor; | ||
var getPipeConstructor = __webpack_require__(71).getPipeConstructor; | ||
this.pipe = getPipeConstructor(this); | ||
|
||
var getConnectionConstructor = __webpack_require__(71).getConnectionConstructor; | ||
var getConnectionConstructor = __webpack_require__(72).getConnectionConstructor; | ||
this.connection = getConnectionConstructor(this); | ||
}, | ||
setup: function setup(token, params) { | ||
|
@@ -20385,7 +20386,8 @@ module.exports = { | |
select: __webpack_require__(63), | ||
sleep: __webpack_require__(64), | ||
task: __webpack_require__(65), | ||
transform: __webpack_require__(66) | ||
transform: __webpack_require__(66), | ||
write: __webpack_require__(67) | ||
}; | ||
|
||
/***/ }), | ||
|
@@ -20968,12 +20970,33 @@ module.exports = transform; | |
|
||
/***/ }), | ||
/* 67 */ | ||
/***/ (function(module, exports) { | ||
/***/ (function(module, exports, __webpack_require__) { | ||
|
||
"use strict"; | ||
|
||
module.exports = {"name":"flexio-sdk-js","version":"1.11.0","description":"Javascript SDK for managing Flex.io resources and services","author":"David Z. Williams <[email protected]>","--main":"dist/flexio-node.js","main":"src/main.js","browser":"dist/flexio.min.js","scripts":{"dev":"cross-env build=development webpack-dev-server --config ./build/webpack.dev.js --open --inline --https --hot","build:debug":"cross-env build=debug webpack --config build/webpack.dist.js","build:release":"cross-env build=production webpack --config build/webpack.dist.js","build:examples":"webpack --config build/webpack.examples.js","build":"npm run build:debug && npm run build:release && npm run build:examples","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/flexiodata/flexio-sdk-js.git"},"keywords":[],"license":"Apache-2.0","bugs":{"url":"https://github.com/flexiodata/flexio-sdk-js/issues"},"homepage":"https://github.com/flexiodata/flexio-sdk-js/","dependencies":{"axios":"^0.16.2","lodash":"^4.17.4","vue-highlightjs":"^1.3.3"},"devDependencies":{"autoprefixer":"^7.1.4","babel-core":"^6.26.0","babel-loader":"^7.1.2","babel-plugin-lodash":"^3.2.11","babel-plugin-transform-es2015-destructuring":"^6.23.0","babel-plugin-transform-es2015-parameters":"^6.24.1","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-env":"^1.6.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","cross-env":"^5.0.5","css-loader":"^0.28.7","deep-assign":"^2.0.0","vue":"^2.4.4","vue-loader":"^13.0.4","vue-simple-spinner":"^1.2.7","vue-style-loader":"^3.0.3","vue-template-compiler":"^2.4.4","webpack":"^3.5.5","webpack-dev-server":"^2.8.2"}} | ||
|
||
var _ = __webpack_require__(0); | ||
var util = __webpack_require__(1); | ||
var taskTypes = __webpack_require__(2); | ||
var writer = function writer(path) { | ||
return { | ||
type: taskTypes.TASK_TYPE_WRITE, | ||
params: { | ||
path: path | ||
} | ||
}; | ||
}; | ||
|
||
module.exports = writer; | ||
|
||
/***/ }), | ||
/* 68 */ | ||
/***/ (function(module, exports) { | ||
|
||
module.exports = {"name":"flexio-sdk-js","version":"1.12.0","description":"Javascript SDK for managing Flex.io resources and services","author":"David Z. Williams <[email protected]>","--main":"dist/flexio-node.js","main":"src/main.js","browser":"dist/flexio.min.js","scripts":{"dev":"cross-env build=development webpack-dev-server --config ./build/webpack.dev.js --open --inline --https --hot","build:debug":"cross-env build=debug webpack --config build/webpack.dist.js","build:release":"cross-env build=production webpack --config build/webpack.dist.js","build:examples":"webpack --config build/webpack.examples.js","build":"npm run build:debug && npm run build:release && npm run build:examples","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/flexiodata/flexio-sdk-js.git"},"keywords":[],"license":"Apache-2.0","bugs":{"url":"https://github.com/flexiodata/flexio-sdk-js/issues"},"homepage":"https://github.com/flexiodata/flexio-sdk-js/","dependencies":{"axios":"^0.16.2","lodash":"^4.17.4","vue-highlightjs":"^1.3.3"},"devDependencies":{"autoprefixer":"^7.1.4","babel-core":"^6.26.0","babel-loader":"^7.1.2","babel-plugin-lodash":"^3.2.11","babel-plugin-transform-es2015-destructuring":"^6.23.0","babel-plugin-transform-es2015-parameters":"^6.24.1","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-env":"^1.6.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","cross-env":"^5.0.5","css-loader":"^0.28.7","deep-assign":"^2.0.0","vue":"^2.4.4","vue-loader":"^13.0.4","vue-simple-spinner":"^1.2.7","vue-style-loader":"^3.0.3","vue-template-compiler":"^2.4.4","webpack":"^3.5.5","webpack-dev-server":"^2.8.2"}} | ||
|
||
/***/ }), | ||
/* 69 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
|
||
"use strict"; | ||
|
@@ -21044,7 +21067,7 @@ module.exports.getConnectionsObject = function (Flexio) { | |
}; | ||
|
||
/***/ }), | ||
/* 69 */ | ||
/* 70 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
|
||
"use strict"; | ||
|
@@ -21278,7 +21301,7 @@ module.exports.getPipesObject = function (Flexio) { | |
}; | ||
|
||
/***/ }), | ||
/* 70 */ | ||
/* 71 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
|
||
"use strict"; | ||
|
@@ -21435,7 +21458,7 @@ module.exports.getPipeConstructor = function (Flexio) { | |
}; | ||
|
||
/***/ }), | ||
/* 71 */ | ||
/* 72 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
|
||
"use strict"; | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/*! | ||
* Flex.io Javascript SDK v1.11.0 (https://github.com/flexiodata/flexio-sdk-js) | ||
* Flex.io Javascript SDK v1.12.0 (https://github.com/flexiodata/flexio-sdk-js) | ||
* (c) 2017 Gold Prairie LLC | ||
*/ | ||
(function webpackUniversalModuleDefinition(root, factory) { | ||
|
@@ -17256,7 +17256,8 @@ module.exports = { | |
TASK_TYPE_SELECT: 'flexio.select', | ||
TASK_TYPE_SLEEP: 'flexio.sleep', | ||
TASK_TYPE_SORT: 'flexio.sort', | ||
TASK_TYPE_TRANSFORM: 'flexio.transform' | ||
TASK_TYPE_TRANSFORM: 'flexio.transform', | ||
TASK_TYPE_WRITE: 'flexio.write' | ||
}; | ||
|
||
/***/ }), | ||
|
@@ -18254,18 +18255,18 @@ var cfg = { | |
}; | ||
|
||
var Flexio = { | ||
version: __webpack_require__(55).version, | ||
version: __webpack_require__(56).version, | ||
|
||
_init: function _init() { | ||
this.connections = __webpack_require__(56).getConnectionsObject(this); | ||
this.pipes = __webpack_require__(57).getPipesObject(this); | ||
this.connections = __webpack_require__(57).getConnectionsObject(this); | ||
this.pipes = __webpack_require__(58).getPipesObject(this); | ||
this.util = __webpack_require__(1).getUtilObject(this); | ||
this._http = null; | ||
|
||
var getPipeConstructor = __webpack_require__(58).getPipeConstructor; | ||
var getPipeConstructor = __webpack_require__(59).getPipeConstructor; | ||
this.pipe = getPipeConstructor(this); | ||
|
||
var getConnectionConstructor = __webpack_require__(59).getConnectionConstructor; | ||
var getConnectionConstructor = __webpack_require__(60).getConnectionConstructor; | ||
this.connection = getConnectionConstructor(this); | ||
}, | ||
setup: function setup(token, params) { | ||
|
@@ -19232,7 +19233,8 @@ module.exports = { | |
select: __webpack_require__(51), | ||
sleep: __webpack_require__(52), | ||
task: __webpack_require__(53), | ||
transform: __webpack_require__(54) | ||
transform: __webpack_require__(54), | ||
write: __webpack_require__(55) | ||
}; | ||
|
||
/***/ }), | ||
|
@@ -21835,12 +21837,33 @@ module.exports = transform; | |
|
||
/***/ }), | ||
/* 55 */ | ||
/***/ (function(module, exports) { | ||
/***/ (function(module, exports, __webpack_require__) { | ||
|
||
"use strict"; | ||
|
||
module.exports = {"name":"flexio-sdk-js","version":"1.11.0","description":"Javascript SDK for managing Flex.io resources and services","author":"David Z. Williams <[email protected]>","--main":"dist/flexio-node.js","main":"src/main.js","browser":"dist/flexio.min.js","scripts":{"dev":"cross-env build=development webpack-dev-server --config ./build/webpack.dev.js --open --inline --https --hot","build:debug":"cross-env build=debug webpack --config build/webpack.dist.js","build:release":"cross-env build=production webpack --config build/webpack.dist.js","build:examples":"webpack --config build/webpack.examples.js","build":"npm run build:debug && npm run build:release && npm run build:examples","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/flexiodata/flexio-sdk-js.git"},"keywords":[],"license":"Apache-2.0","bugs":{"url":"https://github.com/flexiodata/flexio-sdk-js/issues"},"homepage":"https://github.com/flexiodata/flexio-sdk-js/","dependencies":{"axios":"^0.16.2","lodash":"^4.17.4","vue-highlightjs":"^1.3.3"},"devDependencies":{"autoprefixer":"^7.1.4","babel-core":"^6.26.0","babel-loader":"^7.1.2","babel-plugin-lodash":"^3.2.11","babel-plugin-transform-es2015-destructuring":"^6.23.0","babel-plugin-transform-es2015-parameters":"^6.24.1","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-env":"^1.6.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","cross-env":"^5.0.5","css-loader":"^0.28.7","deep-assign":"^2.0.0","vue":"^2.4.4","vue-loader":"^13.0.4","vue-simple-spinner":"^1.2.7","vue-style-loader":"^3.0.3","vue-template-compiler":"^2.4.4","webpack":"^3.5.5","webpack-dev-server":"^2.8.2"}} | ||
|
||
var _ = __webpack_require__(0); | ||
var util = __webpack_require__(1); | ||
var taskTypes = __webpack_require__(2); | ||
var writer = function writer(path) { | ||
return { | ||
type: taskTypes.TASK_TYPE_WRITE, | ||
params: { | ||
path: path | ||
} | ||
}; | ||
}; | ||
|
||
module.exports = writer; | ||
|
||
/***/ }), | ||
/* 56 */ | ||
/***/ (function(module, exports) { | ||
|
||
module.exports = {"name":"flexio-sdk-js","version":"1.12.0","description":"Javascript SDK for managing Flex.io resources and services","author":"David Z. Williams <[email protected]>","--main":"dist/flexio-node.js","main":"src/main.js","browser":"dist/flexio.min.js","scripts":{"dev":"cross-env build=development webpack-dev-server --config ./build/webpack.dev.js --open --inline --https --hot","build:debug":"cross-env build=debug webpack --config build/webpack.dist.js","build:release":"cross-env build=production webpack --config build/webpack.dist.js","build:examples":"webpack --config build/webpack.examples.js","build":"npm run build:debug && npm run build:release && npm run build:examples","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/flexiodata/flexio-sdk-js.git"},"keywords":[],"license":"Apache-2.0","bugs":{"url":"https://github.com/flexiodata/flexio-sdk-js/issues"},"homepage":"https://github.com/flexiodata/flexio-sdk-js/","dependencies":{"axios":"^0.16.2","lodash":"^4.17.4","vue-highlightjs":"^1.3.3"},"devDependencies":{"autoprefixer":"^7.1.4","babel-core":"^6.26.0","babel-loader":"^7.1.2","babel-plugin-lodash":"^3.2.11","babel-plugin-transform-es2015-destructuring":"^6.23.0","babel-plugin-transform-es2015-parameters":"^6.24.1","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-env":"^1.6.0","babel-preset-es2015":"^6.24.1","babel-preset-stage-2":"^6.24.1","cross-env":"^5.0.5","css-loader":"^0.28.7","deep-assign":"^2.0.0","vue":"^2.4.4","vue-loader":"^13.0.4","vue-simple-spinner":"^1.2.7","vue-style-loader":"^3.0.3","vue-template-compiler":"^2.4.4","webpack":"^3.5.5","webpack-dev-server":"^2.8.2"}} | ||
|
||
/***/ }), | ||
/* 57 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
|
||
"use strict"; | ||
|
@@ -21911,7 +21934,7 @@ module.exports.getConnectionsObject = function (Flexio) { | |
}; | ||
|
||
/***/ }), | ||
/* 57 */ | ||
/* 58 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
|
||
"use strict"; | ||
|
@@ -22145,7 +22168,7 @@ module.exports.getPipesObject = function (Flexio) { | |
}; | ||
|
||
/***/ }), | ||
/* 58 */ | ||
/* 59 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
|
||
"use strict"; | ||
|
@@ -22302,7 +22325,7 @@ module.exports.getPipeConstructor = function (Flexio) { | |
}; | ||
|
||
/***/ }), | ||
/* 59 */ | ||
/* 60 */ | ||
/***/ (function(module, exports, __webpack_require__) { | ||
|
||
"use strict"; | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.