@hestia-earth/engine-models 0.65.2 → 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/models.d.ts +8 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +2 -2
- package/src/models.ts +8 -0
- package/src/version.ts +1 -1
package/dist/models.d.ts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
import { EmissionMethodTier } from '@hestia-earth/schema';
|
|
2
2
|
export interface IModel {
|
|
3
|
+
/**
|
|
4
|
+
* Path to the implementation (code) of the model.
|
|
5
|
+
*/
|
|
6
|
+
path: string;
|
|
7
|
+
/**
|
|
8
|
+
* Path to the documentation of the model.
|
|
9
|
+
*/
|
|
10
|
+
docPath: string;
|
|
3
11
|
/**
|
|
4
12
|
* The name of the model used as `methodModel`.
|
|
5
13
|
*/
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const ENGINE_VERSION = "0.65.
|
|
1
|
+
export declare const ENGINE_VERSION = "0.65.3";
|
package/dist/version.js
CHANGED
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": {
|
package/src/models.ts
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
import { EmissionMethodTier } from '@hestia-earth/schema';
|
|
2
2
|
|
|
3
3
|
export interface IModel {
|
|
4
|
+
/**
|
|
5
|
+
* Path to the implementation (code) of the model.
|
|
6
|
+
*/
|
|
7
|
+
path: string;
|
|
8
|
+
/**
|
|
9
|
+
* Path to the documentation of the model.
|
|
10
|
+
*/
|
|
11
|
+
docPath: string;
|
|
4
12
|
/**
|
|
5
13
|
* The name of the model used as `methodModel`.
|
|
6
14
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const ENGINE_VERSION = '0.65.
|
|
1
|
+
export const ENGINE_VERSION = '0.65.3';
|