@hestia-earth/glossary 0.84.0 → 0.85.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/index.js +4 -0
- package/package.json +1 -1
- package/resources/arrayTreatment.json +1 -1
- package/resources/impactAssessment.json +1 -1
- package/resources/inHestiaDefaultSystemBoundary.json +1 -1
- package/resources/term-order.json +1 -1
- package/resources/term-restrictions.json +1 -1
- package/resources/termType-lookups.json +1 -1
- package/resources/worldsteelMapping.json +1 -0
package/index.js
CHANGED
|
@@ -108,6 +108,9 @@ const getEcoalimMapping = (id) => loadResourceKey("ecoalimMapping.json", id);
|
|
|
108
108
|
const getEcoinventMapping = (id) =>
|
|
109
109
|
loadResourceKey("ecoinventMapping.json", id);
|
|
110
110
|
|
|
111
|
+
const getWorldSteelMapping = (id) =>
|
|
112
|
+
loadResourceKey("worldsteelMapping.json", id);
|
|
113
|
+
|
|
111
114
|
/**
|
|
112
115
|
* Return the group for this term with a specific model.
|
|
113
116
|
*
|
|
@@ -150,6 +153,7 @@ module.exports = {
|
|
|
150
153
|
isInSystemBoundary,
|
|
151
154
|
getEcoalimMapping,
|
|
152
155
|
getEcoinventMapping,
|
|
156
|
+
getWorldSteelMapping,
|
|
153
157
|
getModelGroup,
|
|
154
158
|
termOrder,
|
|
155
159
|
};
|