@zerocarbon/erp-config-sdk 1.0.2 → 1.0.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 +101 -94
- package/dist/index.esm.js +62 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +63 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9032,7 +9032,7 @@ const WATER_MANAGEMENT_GAS_LAB = {
|
|
|
9032
9032
|
desc: "Water withdrawal, consumption, and discharge tracking for gas lab operations",
|
|
9033
9033
|
};
|
|
9034
9034
|
|
|
9035
|
-
const WATER_PRODUCTS = [
|
|
9035
|
+
const WATER_PRODUCTS$1 = [
|
|
9036
9036
|
// Water Withdrawal by Source
|
|
9037
9037
|
{
|
|
9038
9038
|
name: "Surface Water",
|
|
@@ -11199,7 +11199,7 @@ const WATER_MANAGEMENT_SCOPE = {
|
|
|
11199
11199
|
icon: gi.GiElectric,
|
|
11200
11200
|
scope: "other",
|
|
11201
11201
|
unit: "kilolitres",
|
|
11202
|
-
subProducts: WATER_PRODUCTS,
|
|
11202
|
+
subProducts: WATER_PRODUCTS$1,
|
|
11203
11203
|
desc: "Water withdrawal, consumption, and discharge tracking",
|
|
11204
11204
|
};
|
|
11205
11205
|
// Helper function to clean values
|
|
@@ -20776,6 +20776,65 @@ const FIRE_EXTINGUISHER_PRODUCTS$8 = [
|
|
|
20776
20776
|
emissionFactor: 1,
|
|
20777
20777
|
},
|
|
20778
20778
|
];
|
|
20779
|
+
// WATER PRODUCTS
|
|
20780
|
+
const WATER_PRODUCTS = [
|
|
20781
|
+
{
|
|
20782
|
+
name: "Discharged to Surface Water",
|
|
20783
|
+
unit: "m^3",
|
|
20784
|
+
type: "direct",
|
|
20785
|
+
calorificValue: 1,
|
|
20786
|
+
emissionFactor: 0,
|
|
20787
|
+
},
|
|
20788
|
+
{
|
|
20789
|
+
name: "Ground Water",
|
|
20790
|
+
unit: "m^3",
|
|
20791
|
+
type: "direct",
|
|
20792
|
+
calorificValue: 1,
|
|
20793
|
+
emissionFactor: 0,
|
|
20794
|
+
},
|
|
20795
|
+
{
|
|
20796
|
+
name: "Rain Water",
|
|
20797
|
+
unit: "m^3",
|
|
20798
|
+
type: "direct",
|
|
20799
|
+
calorificValue: 1,
|
|
20800
|
+
emissionFactor: 0,
|
|
20801
|
+
},
|
|
20802
|
+
{
|
|
20803
|
+
name: "Municipal Water",
|
|
20804
|
+
unit: "m^3",
|
|
20805
|
+
type: "direct",
|
|
20806
|
+
calorificValue: 1,
|
|
20807
|
+
emissionFactor: 0,
|
|
20808
|
+
},
|
|
20809
|
+
{
|
|
20810
|
+
name: "Tanker Water",
|
|
20811
|
+
unit: "m^3",
|
|
20812
|
+
type: "direct",
|
|
20813
|
+
calorificValue: 1,
|
|
20814
|
+
emissionFactor: 0,
|
|
20815
|
+
},
|
|
20816
|
+
{
|
|
20817
|
+
name: "Recycled Water",
|
|
20818
|
+
unit: "m^3",
|
|
20819
|
+
type: "direct",
|
|
20820
|
+
calorificValue: 1,
|
|
20821
|
+
emissionFactor: 0,
|
|
20822
|
+
},
|
|
20823
|
+
{
|
|
20824
|
+
name: "Surface Water",
|
|
20825
|
+
unit: "m^3",
|
|
20826
|
+
type: "direct",
|
|
20827
|
+
calorificValue: 1,
|
|
20828
|
+
emissionFactor: 0,
|
|
20829
|
+
},
|
|
20830
|
+
{
|
|
20831
|
+
name: "Desalinated Water",
|
|
20832
|
+
unit: "m^3",
|
|
20833
|
+
type: "direct",
|
|
20834
|
+
calorificValue: 1,
|
|
20835
|
+
emissionFactor: 0,
|
|
20836
|
+
},
|
|
20837
|
+
];
|
|
20779
20838
|
const FUEL_COMBUSTION_PRODUCTS$6 = [
|
|
20780
20839
|
{
|
|
20781
20840
|
name: "Diesel",
|
|
@@ -40326,8 +40385,10 @@ exports.INDUSTRIES_CONFIG = INDUSTRIES_CONFIG;
|
|
|
40326
40385
|
exports.INDUSTRY_MAPPING = INDUSTRY_MAPPING;
|
|
40327
40386
|
exports.INDUSTRY_SPECIFIC_FIELDS = INDUSTRY_SPECIFIC_FIELDS;
|
|
40328
40387
|
exports.INTENSITY_FIELD_LABELS = INTENSITY_FIELD_LABELS;
|
|
40388
|
+
exports.ISO_CATEGORIES_PACKAGING = ISO_CATEGORIES_PACKAGING;
|
|
40329
40389
|
exports.Industries = index;
|
|
40330
40390
|
exports.UI_FEATURES = UI_FEATURES;
|
|
40391
|
+
exports.WATER_PRODUCTS = WATER_PRODUCTS;
|
|
40331
40392
|
exports.calculateCCTSEmission = calculateCCTSEmission;
|
|
40332
40393
|
exports.calculateIntensityMetrics = calculateIntensityMetrics;
|
|
40333
40394
|
exports.categorizeApiItem = categorizeApiItem;
|