nodejs-nomer 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -120,7 +120,7 @@ var Nomer = /*#__PURE__*/function () {
120
120
  var schemaAppend = JSON.parse(properties["nomer.append.schema.output"]).map(function (i) {
121
121
  return i.type;
122
122
  });
123
- return _result["default"].tsv(result, [].concat(_toConsumableArray(schemaInput), _toConsumableArray(schemaAppend)));
123
+ return _result["default"].tsv(result, [].concat(_toConsumableArray(schemaInput), ["matchType"], _toConsumableArray(schemaAppend)));
124
124
  }
125
125
  }]);
126
126
  return Nomer;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodejs-nomer",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "NodeJS wrapper for nomer",
5
5
  "config": {
6
6
  "nomerVersion": "0.5.6"
package/src/index.js CHANGED
@@ -97,7 +97,7 @@ class Nomer {
97
97
  const properties = getProperties(content)
98
98
  const schemaInput = JSON.parse(properties["nomer.schema.input"]).map((i) => i.type + 'Input')
99
99
  const schemaAppend = JSON.parse(properties["nomer.append.schema.output"]).map((i) => i.type)
100
- return Result.tsv(result, [...schemaInput, ...schemaAppend])
100
+ return Result.tsv(result, [...schemaInput, "matchType", ...schemaAppend])
101
101
  }
102
102
 
103
103