@hestia-earth/glossary 0.42.0 → 0.43.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/CHANGELOG.md CHANGED
@@ -2,6 +2,35 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [0.43.0](https://gitlab.com/hestia-earth/hestia-glossary/compare/v0.42.0...v0.43.0) (2024-02-20)
6
+
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ * **wasteManagement:** Rename `liquidSlurryCoverWasteManagement` `liquidSlurryWithCoverWasteManagement`
11
+ * **excretaManagement:** Rename `liquidSlurryCover` `liquidSlurryWithCover`
12
+
13
+ ### Features
14
+
15
+ * **cropResidueManagement:** restrict `Pasture renewed` to `siteType` `permanent pasture` ([fd1d0b4](https://gitlab.com/hestia-earth/hestia-glossary/commit/fd1d0b4618a00460c8c81a13f1e4dadb705a47ae))
16
+ * **feedFoodAdditive:** add default energy content to `Minerals, unspecified` ([383abef](https://gitlab.com/hestia-earth/hestia-glossary/commit/383abef59d51a6057a18c01723b3e854b620ce17))
17
+ * **inorganicFertiliser:** add `potassiumContentAsK2O` value to `Monopotassium Phosphate (kg P2O5)` ([17128e0](https://gitlab.com/hestia-earth/hestia-glossary/commit/17128e0de5765638f3a903250d1a0fad0c1da946))
18
+ * **processedFood:** add `pisco` ([5e481ae](https://gitlab.com/hestia-earth/hestia-glossary/commit/5e481ae17cdf76365166bb312e3237f09aa96bb6))
19
+ * **processedFood:** add `topDressingProteinFeedUnspecified` ([8cbfacf](https://gitlab.com/hestia-earth/hestia-glossary/commit/8cbfacf5d52aec544fe7a90e7955ecbe8ec26614)), closes [#1238](https://gitlab.com/hestia-earth/hestia-glossary/issues/1238)
20
+ * **processingAid:** add `lacticAcidProcessingAid` ([3050c29](https://gitlab.com/hestia-earth/hestia-glossary/commit/3050c29bdb0cfb3b622e1e1788d14842d23da1e5)), closes [#1052](https://gitlab.com/hestia-earth/hestia-glossary/issues/1052)
21
+ * **region:** add regional data for `averageColdCarcassWeight` lookup ([015c213](https://gitlab.com/hestia-earth/hestia-glossary/commit/015c213c049178ab4f0ecf309d937ca12a88ad3b))
22
+ * **system:** add `farrowingCrateSystem` ([f252d52](https://gitlab.com/hestia-earth/hestia-glossary/commit/f252d529f687a74f73f7c8bbc20e5633d9ea1a43))
23
+ * **system:** add `outdoorAnimalSystem` ([749c49e](https://gitlab.com/hestia-earth/hestia-glossary/commit/749c49e5072137a05ab318235e4266285c847a63))
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * **characterisedIndicator:** error in model mapping lookup for `chaudharyBrooks2018` ([458f278](https://gitlab.com/hestia-earth/hestia-glossary/commit/458f278f8f26119e36a563e3b8fc9b1b58ad7615))
29
+ * **crop:** errors in combustion factors for five terms ([6a480db](https://gitlab.com/hestia-earth/hestia-glossary/commit/6a480db71eb1cf1d625413fc993e037a6ff53ca8))
30
+ * **excretaManagement:** rename `liquidSlurryCover` `liquidSlurryWithCover` ([039e130](https://gitlab.com/hestia-earth/hestia-glossary/commit/039e1307e25ec0adcb949c75c34c62b81af39c14))
31
+ * **forage:** remove duplicated properties for `genericGrassFreshForage` ([e7753f6](https://gitlab.com/hestia-earth/hestia-glossary/commit/e7753f669477c9cf8ee0d2b1f96c63a7a749b1a6))
32
+ * **wasteManagement:** rename `liquidSlurryCoverWasteManagement` ([96f72aa](https://gitlab.com/hestia-earth/hestia-glossary/commit/96f72aa51eaa08d7bbe865d176a9dedd63c5e35e))
33
+
5
34
  ## [0.42.0](https://gitlab.com/hestia-earth/hestia-glossary/compare/v0.41.0...v0.42.0) (2024-02-06)
6
35
 
7
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestia-earth/glossary",
3
- "version": "0.42.0",
3
+ "version": "0.43.0",
4
4
  "description": "Hestia Earth Glossary library",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -23903,6 +23903,7 @@
23903
23903
  "chelatingAgentUnspecified",
23904
23904
  "steam1BarPressure",
23905
23905
  "instrumentAir",
23906
+ "lacticAcidProcessingAid",
23906
23907
  "aragonite",
23907
23908
  "biochar",
23908
23909
  "lime",
@@ -2399,7 +2399,6 @@
2399
2399
  },
2400
2400
  "pastureRenewed": {
2401
2401
  "siteTypesAllowed": [
2402
- "cropland",
2403
2402
  "permanent pasture"
2404
2403
  ],
2405
2404
  "productTermTypesAllowed": [
@@ -10318,7 +10317,7 @@
10318
10317
  "river or stream"
10319
10318
  ]
10320
10319
  },
10321
- "liquidSlurryCover": {
10320
+ "liquidSlurryWithCover": {
10322
10321
  "siteTypesAllowed": [
10323
10322
  "cropland",
10324
10323
  "permanent pasture",
@@ -150687,6 +150686,11 @@
150687
150686
  "all"
150688
150687
  ]
150689
150688
  },
150689
+ "lacticAcidProcessingAid": {
150690
+ "siteTypesAllowed": [
150691
+ "agri-food processor"
150692
+ ]
150693
+ },
150690
150694
  "acidDetergentFibreContent": {
150691
150695
  "siteTypesAllowed": [
150692
150696
  "all"
@@ -155343,6 +155347,17 @@
155343
155347
  "permanent pasture"
155344
155348
  ]
155345
155349
  },
155350
+ "outdoorAnimalSystem": {
155351
+ "siteTypesAllowed": [
155352
+ "permanent pasture",
155353
+ "animal housing"
155354
+ ]
155355
+ },
155356
+ "farrowingCrateSystem": {
155357
+ "siteTypesAllowed": [
155358
+ "animal housing"
155359
+ ]
155360
+ },
155346
155361
  "noTillage": {
155347
155362
  "siteTypesAllowed": [
155348
155363
  "cropland",
@@ -180959,7 +180974,7 @@
180959
180974
  "river or stream"
180960
180975
  ]
180961
180976
  },
180962
- "liquidSlurryCoverWasteManagement": {
180977
+ "liquidSlurryWithCoverWasteManagement": {
180963
180978
  "siteTypesAllowed": [
180964
180979
  "cropland",
180965
180980
  "glass or high accessible cover",