@hestia-earth/api 0.9.35-0 → 0.9.35-1

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.
@@ -100,7 +100,13 @@ var filterByType = function (expectedType, _a) {
100
100
  var type = _a.type;
101
101
  return !type ||
102
102
  type === expectedType ||
103
- Object.values(schema_1.SchemaType).filter(function (t) { return !schema_1.isTypeNode(t); }).includes(type);
103
+ Object
104
+ .values(schema_1.SchemaType)
105
+ .filter(function (t) {
106
+ return !schema_1.isTypeNode(t) &&
107
+ t !== schema_1.SchemaType.Transformation;
108
+ })
109
+ .includes(type);
104
110
  };
105
111
  exports.groupLogsByModel = function (type, data) {
106
112
  return data.split('\n')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestia-earth/api",
3
- "version": "0.9.35-0",
3
+ "version": "0.9.35-1",
4
4
  "description": "Hestia API definitions",
5
5
  "main": "dist/models.js",
6
6
  "typings": "dist/models.d.ts",