@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/index.d.cts CHANGED
@@ -53,6 +53,9 @@ declare const wasteCategories: readonly [{
53
53
  }, {
54
54
  readonly name: "Meals Donated";
55
55
  readonly type: "N/A";
56
+ }, {
57
+ readonly name: "Cardboard";
58
+ readonly type: "Recyclable";
56
59
  }];
57
60
  declare const utilityTypes: readonly [{
58
61
  readonly name: "Electricity";
package/dist/index.d.ts CHANGED
@@ -53,6 +53,9 @@ declare const wasteCategories: readonly [{
53
53
  }, {
54
54
  readonly name: "Meals Donated";
55
55
  readonly type: "N/A";
56
+ }, {
57
+ readonly name: "Cardboard";
58
+ readonly type: "Recyclable";
56
59
  }];
57
60
  declare const utilityTypes: readonly [{
58
61
  readonly name: "Electricity";
package/dist/index.js CHANGED
@@ -25317,7 +25317,8 @@ var wasteCategories = [
25317
25317
  { name: "Wood", type: "Recyclable" },
25318
25318
  { name: "Metal", type: "Recyclable" },
25319
25319
  { name: "Furniture", type: "Recyclable" },
25320
- { name: "Meals Donated", type: "N/A" }
25320
+ { name: "Meals Donated", type: "N/A" },
25321
+ { name: "Cardboard", type: "Recyclable" }
25321
25322
  ];
25322
25323
  var utilityTypes = [
25323
25324
  { name: "Electricity", value: "electricity", icon: "fa-plug", color: "text-warning" },
@@ -25340,7 +25341,12 @@ var utilityTypes = [
25340
25341
  { name: "Other", value: "other", icon: "fa-meter", color: "text-muted" }
25341
25342
  ];
25342
25343
  var units = [
25343
- { name: "kWh", value: "kwh", types: ["electricity", "gas", "solar", "heating", "cooling"], defaultTypes: ["electricity", "gas", "solar", "heating", "cooling"] },
25344
+ {
25345
+ name: "kWh",
25346
+ value: "kwh",
25347
+ types: ["electricity", "gas", "solar", "heating", "cooling"],
25348
+ defaultTypes: ["electricity", "gas", "solar", "heating", "cooling"]
25349
+ },
25344
25350
  { name: "m3 (Cubic Meters)", value: "m3", types: ["gas", "water"], defaultTypes: ["water"] },
25345
25351
  { name: "hcf (Hundred Cubic Feet)", value: "hcf", types: ["gas"] },
25346
25352
  { name: "ft3 (Cubic Feet)", value: "ft3", types: ["gas"] },