Skip to content
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.

Commit

Permalink
support alterState in version 6
Browse files Browse the repository at this point in the history
  • Loading branch information
taylordowns2000 committed Aug 21, 2016
1 parent 8e14341 commit 5b637a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion lib/Adaptor.js
Expand Up @@ -3,7 +3,7 @@
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.lastReferenceValue = exports.dataValue = exports.dataPath = exports.merge = exports.sourceValue = exports.fields = exports.field = undefined;
exports.lastReferenceValue = exports.dataValue = exports.dataPath = exports.merge = exports.alterState = exports.sourceValue = exports.fields = exports.field = undefined;

var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj; };

Expand Down Expand Up @@ -39,6 +39,12 @@ Object.defineProperty(exports, 'fields', {
return _languageCommon.fields;
}
});
Object.defineProperty(exports, 'alterState', {
enumerable: true,
get: function get() {
return _languageCommon.alterState;
}
});
Object.defineProperty(exports, 'merge', {
enumerable: true,
get: function get() {
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "language-http",
"version": "0.0.5",
"version": "0.0.6",
"description": "An HTTP Language Pack for OpenFn",
"main": "lib/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/Adaptor.js
Expand Up @@ -98,6 +98,6 @@ export function post(params) {
}

export {
field, fields, sourceValue, fields,
field, fields, sourceValue, fields, alterState,
merge, dataPath, dataValue, lastReferenceValue
} from 'language-common';

0 comments on commit 5b637a9

Please sign in to comment.