@hestia-earth/engine-models 0.65.1 → 0.65.2

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.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  export * from './models';
2
+ export * from './version';
package/dist/index.js CHANGED
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./models"), exports);
18
+ __exportStar(require("./version"), exports);
package/dist/models.d.ts CHANGED
@@ -1,21 +1,5 @@
1
1
  import { EmissionMethodTier } from '@hestia-earth/schema';
2
2
  export interface IModel {
3
- /**
4
- * Is model from EcoinventV3.
5
- */
6
- ecoinvent: boolean;
7
- /**
8
- * Path to the implementation (code) of the model.
9
- */
10
- path: string;
11
- /**
12
- * Path to the documentation of the model.
13
- */
14
- docPath: string;
15
- /**
16
- * Path to the API Documentation.
17
- */
18
- apiDocsPath?: string;
19
3
  /**
20
4
  * The name of the model used as `methodModel`.
21
5
  */
@@ -0,0 +1 @@
1
+ export declare const ENGINE_VERSION = "0.65.1";
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ENGINE_VERSION = void 0;
4
+ exports.ENGINE_VERSION = '0.65.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestia-earth/engine-models",
3
- "version": "0.65.1",
3
+ "version": "0.65.2",
4
4
  "description": "HESTIA Engine Models",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",