@things-factory/dataset 6.2.34 → 6.2.37
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-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/service/data-sensor/data-sensor-type.js.map +1 -1
- package/dist-server/service/data-sensor/data-sensor.js +8 -24
- package/dist-server/service/data-sensor/data-sensor.js.map +1 -1
- package/dist-server/service/data-set/data-set.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/server/service/data-sensor/data-sensor-type.ts +2 -2
- package/server/service/data-sensor/data-sensor.ts +10 -26
- package/server/service/data-set/data-set.ts +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@things-factory/dataset",
|
3
|
-
"version": "6.2.
|
3
|
+
"version": "6.2.37",
|
4
4
|
"main": "dist-server/index.js",
|
5
5
|
"browser": "dist-client/index.js",
|
6
6
|
"things-factory": true,
|
@@ -39,17 +39,17 @@
|
|
39
39
|
"@operato/utils": "^1.0.1",
|
40
40
|
"@things-factory/auth-base": "^6.2.34",
|
41
41
|
"@things-factory/aws-base": "^6.2.34",
|
42
|
-
"@things-factory/board-service": "^6.2.
|
42
|
+
"@things-factory/board-service": "^6.2.37",
|
43
43
|
"@things-factory/env": "^6.2.33",
|
44
44
|
"@things-factory/organization": "^6.2.34",
|
45
45
|
"@things-factory/scheduler-client": "^6.2.34",
|
46
46
|
"@things-factory/shell": "^6.2.34",
|
47
47
|
"@things-factory/work-shift": "^6.2.34",
|
48
|
-
"@things-factory/worklist": "^6.2.
|
48
|
+
"@things-factory/worklist": "^6.2.37",
|
49
49
|
"cron-parser": "^4.3.0",
|
50
50
|
"moment-timezone": "^0.5.40",
|
51
51
|
"simple-statistics": "^7.8.3",
|
52
52
|
"statistics": "^3.3.0"
|
53
53
|
},
|
54
|
-
"gitHead": "
|
54
|
+
"gitHead": "262635e763771557d8bb53fc5198aa9b67c82979"
|
55
55
|
}
|
@@ -34,7 +34,7 @@ export class NewDataSensor {
|
|
34
34
|
tag?: string
|
35
35
|
|
36
36
|
@Field({ nullable: true })
|
37
|
-
refBy?:
|
37
|
+
refBy?: string
|
38
38
|
|
39
39
|
@Field(type => ObjectRef, { nullable: true })
|
40
40
|
appliance?: ObjectRef
|
@@ -76,7 +76,7 @@ export class DataSensorPatch {
|
|
76
76
|
tag?: string
|
77
77
|
|
78
78
|
@Field({ nullable: true })
|
79
|
-
refBy?:
|
79
|
+
refBy?: string
|
80
80
|
|
81
81
|
@Field(type => ObjectRef, { nullable: true })
|
82
82
|
appliance?: ObjectRef
|
@@ -39,59 +39,43 @@ export class DataSensor {
|
|
39
39
|
|
40
40
|
@Column()
|
41
41
|
@Field()
|
42
|
-
name
|
42
|
+
name?: string
|
43
43
|
|
44
|
-
@Column({
|
45
|
-
nullable: true
|
46
|
-
})
|
44
|
+
@Column({ nullable: true })
|
47
45
|
@Field({ nullable: true })
|
48
46
|
description?: string
|
49
47
|
|
50
|
-
@Column({
|
51
|
-
nullable: true
|
52
|
-
})
|
48
|
+
@Column({ nullable: true })
|
53
49
|
@Field({ nullable: true })
|
54
50
|
active?: boolean
|
55
51
|
|
56
|
-
@Column({
|
57
|
-
nullable: true
|
58
|
-
})
|
52
|
+
@Column({ nullable: true })
|
59
53
|
@Field({ nullable: true })
|
60
54
|
deviceId?: string
|
61
55
|
|
62
|
-
@Column({
|
63
|
-
nullable: true
|
64
|
-
})
|
56
|
+
@Column({ nullable: true })
|
65
57
|
@Field({ nullable: true })
|
66
58
|
serialNo?: string
|
67
59
|
|
68
|
-
@Column({
|
69
|
-
nullable: true
|
70
|
-
})
|
60
|
+
@Column({ nullable: true })
|
71
61
|
@Field({ nullable: true })
|
72
62
|
brand?: string
|
73
63
|
|
74
|
-
@Column({
|
75
|
-
nullable: true
|
76
|
-
})
|
64
|
+
@Column({ nullable: true })
|
77
65
|
@Field({ nullable: true })
|
78
66
|
model?: string
|
79
67
|
|
80
|
-
@Column({
|
81
|
-
nullable: true
|
82
|
-
})
|
68
|
+
@Column({ nullable: true })
|
83
69
|
@Field({ nullable: true })
|
84
70
|
netmask?: string
|
85
71
|
|
86
|
-
@Column({
|
87
|
-
nullable: true
|
88
|
-
})
|
72
|
+
@Column({ nullable: true })
|
89
73
|
@Field({ nullable: true })
|
90
74
|
tag?: string
|
91
75
|
|
92
76
|
@Column({ nullable: true })
|
93
77
|
@Field({ nullable: true })
|
94
|
-
refBy?:
|
78
|
+
refBy?: string
|
95
79
|
|
96
80
|
@ManyToOne(type => Appliance, { nullable: true })
|
97
81
|
@Field({ nullable: true })
|