@hestia-earth/engine-models 0.65.1 → 0.65.3
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 +1 -0
- package/dist/index.js +1 -0
- package/dist/models.d.ts +0 -8
- package/dist/version.d.ts +1 -0
- package/dist/version.js +4 -0
- package/package.json +2 -2
- package/search-results.json +5123 -0
- package/src/index.ts +1 -0
- package/src/models.ts +0 -8
- package/src/version.ts +1 -0
- package/README.md +0 -52
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/models.d.ts
CHANGED
|
@@ -1,9 +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
3
|
/**
|
|
8
4
|
* Path to the implementation (code) of the model.
|
|
9
5
|
*/
|
|
@@ -12,10 +8,6 @@ export interface IModel {
|
|
|
12
8
|
* Path to the documentation of the model.
|
|
13
9
|
*/
|
|
14
10
|
docPath: string;
|
|
15
|
-
/**
|
|
16
|
-
* Path to the API Documentation.
|
|
17
|
-
*/
|
|
18
|
-
apiDocsPath?: string;
|
|
19
11
|
/**
|
|
20
12
|
* The name of the model used as `methodModel`.
|
|
21
13
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ENGINE_VERSION = "0.65.3";
|
package/dist/version.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hestia-earth/engine-models",
|
|
3
|
-
"version": "0.65.
|
|
3
|
+
"version": "0.65.3",
|
|
4
4
|
"description": "HESTIA Engine Models",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
},
|
|
73
73
|
"standard-version": {
|
|
74
74
|
"scripts": {
|
|
75
|
-
"postchangelog": "npm run prepare-release && git add model-links.json && git add hestia_earth/models/**/*.md && git add hestia_earth/models/version.py"
|
|
75
|
+
"postchangelog": "npm run prepare-release && git add model-links.json && git add hestia_earth/models/**/*.md && git add hestia_earth/models/version.py && git add src/version.ts"
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
78
|
"husky": {
|