@etainabl/nodejs-sdk 1.3.191 → 1.3.192
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/esm/index.js +8 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -9115,7 +9115,8 @@ var wasteCategories = [
|
|
|
9115
9115
|
{ name: "Wood", type: "Recyclable" },
|
|
9116
9116
|
{ name: "Metal", type: "Recyclable" },
|
|
9117
9117
|
{ name: "Furniture", type: "Recyclable" },
|
|
9118
|
-
{ name: "Meals Donated", type: "N/A" }
|
|
9118
|
+
{ name: "Meals Donated", type: "N/A" },
|
|
9119
|
+
{ name: "Cardboard", type: "Recyclable" }
|
|
9119
9120
|
];
|
|
9120
9121
|
var utilityTypes = [
|
|
9121
9122
|
{ name: "Electricity", value: "electricity", icon: "fa-plug", color: "text-warning" },
|
|
@@ -9138,7 +9139,12 @@ var utilityTypes = [
|
|
|
9138
9139
|
{ name: "Other", value: "other", icon: "fa-meter", color: "text-muted" }
|
|
9139
9140
|
];
|
|
9140
9141
|
var units = [
|
|
9141
|
-
{
|
|
9142
|
+
{
|
|
9143
|
+
name: "kWh",
|
|
9144
|
+
value: "kwh",
|
|
9145
|
+
types: ["electricity", "gas", "solar", "heating", "cooling"],
|
|
9146
|
+
defaultTypes: ["electricity", "gas", "solar", "heating", "cooling"]
|
|
9147
|
+
},
|
|
9142
9148
|
{ name: "m3 (Cubic Meters)", value: "m3", types: ["gas", "water"], defaultTypes: ["water"] },
|
|
9143
9149
|
{ name: "hcf (Hundred Cubic Feet)", value: "hcf", types: ["gas"] },
|
|
9144
9150
|
{ name: "ft3 (Cubic Feet)", value: "ft3", types: ["gas"] },
|