@hestia-earth/engine-models 0.67.0 → 0.68.0
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/config/Cycle.json +15 -0
- package/config/ImpactAssessment.json +14 -1
- package/config/Site.json +8 -0
- package/dist/models.d.ts +2 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/model-links.json +5404 -124
- package/package.json +14 -14
- package/search-results.json +3477 -1045
- package/src/models.ts +6 -0
- package/src/version.ts +1 -1
package/src/models.ts
CHANGED
|
@@ -28,10 +28,16 @@ export interface IModel {
|
|
|
28
28
|
modelKey?: string;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
+
export type modelLookup = Record<
|
|
32
|
+
string,
|
|
33
|
+
Pick<IModel, 'model' | 'term' | 'modelKey'>[]
|
|
34
|
+
>;
|
|
35
|
+
|
|
31
36
|
export interface IModelLinks {
|
|
32
37
|
links: IModel[];
|
|
33
38
|
ecoinventLinks?: IModel[];
|
|
34
39
|
ecoinventV3AndEmberClimateLinks?: IModel[];
|
|
40
|
+
lookups: Record<string, modelLookup>;
|
|
35
41
|
}
|
|
36
42
|
|
|
37
43
|
export const models = data as IModelLinks;
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const ENGINE_VERSION = '0.
|
|
1
|
+
export const ENGINE_VERSION = '0.68.0';
|