@things-factory/dataset 8.0.11 → 8.0.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/dataset",
3
- "version": "8.0.11",
3
+ "version": "8.0.12",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -56,5 +56,5 @@
56
56
  "simple-statistics": "^7.8.3",
57
57
  "statistics": "^3.3.0"
58
58
  },
59
- "gitHead": "b46e9ab93c3f559e5ce07c8ecf4b2093fc698bd9"
59
+ "gitHead": "3c9ffd8fc4bccdbcab857fc4cc71faf20179cf4f"
60
60
  }
@@ -33,6 +33,12 @@ export class NewDataSensor {
33
33
  @Field({ nullable: true })
34
34
  tag?: string
35
35
 
36
+ @Field({ nullable: true })
37
+ capacity?: number
38
+
39
+ @Field({ nullable: true })
40
+ unit?: string
41
+
36
42
  @Field({ nullable: true })
37
43
  refBy?: string
38
44
 
@@ -78,6 +84,12 @@ export class DataSensorPatch {
78
84
  @Field({ nullable: true })
79
85
  tag?: string
80
86
 
87
+ @Field({ nullable: true })
88
+ capacity?: number
89
+
90
+ @Field({ nullable: true })
91
+ unit?: string
92
+
81
93
  @Field({ nullable: true })
82
94
  refBy?: string
83
95