@things-factory/dataset 7.1.31 → 7.1.34

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/dataset",
3
- "version": "7.1.31",
3
+ "version": "7.1.34",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -40,21 +40,21 @@
40
40
  "@operato/shell": "^7.0.0",
41
41
  "@operato/styles": "^7.0.0",
42
42
  "@operato/utils": "^7.0.0",
43
- "@things-factory/auth-base": "^7.1.24",
44
- "@things-factory/aws-base": "^7.1.24",
45
- "@things-factory/board-service": "^7.1.29",
43
+ "@things-factory/auth-base": "^7.1.33",
44
+ "@things-factory/aws-base": "^7.1.33",
45
+ "@things-factory/board-service": "^7.1.34",
46
46
  "@things-factory/env": "^7.1.16",
47
- "@things-factory/integration-base": "^7.1.29",
48
- "@things-factory/organization": "^7.1.30",
49
- "@things-factory/personalization": "^7.1.24",
50
- "@things-factory/scheduler-client": "^7.1.24",
47
+ "@things-factory/integration-base": "^7.1.34",
48
+ "@things-factory/organization": "^7.1.33",
49
+ "@things-factory/personalization": "^7.1.33",
50
+ "@things-factory/scheduler-client": "^7.1.34",
51
51
  "@things-factory/shell": "^7.1.24",
52
- "@things-factory/work-shift": "^7.1.24",
53
- "@things-factory/worklist": "^7.1.30",
52
+ "@things-factory/work-shift": "^7.1.33",
53
+ "@things-factory/worklist": "^7.1.34",
54
54
  "cron-parser": "^4.3.0",
55
55
  "moment-timezone": "^0.5.45",
56
56
  "simple-statistics": "^7.8.3",
57
57
  "statistics": "^3.3.0"
58
58
  },
59
- "gitHead": "49a1f306f2f49780b6a25a9f8447969fe00d5ba3"
59
+ "gitHead": "22830c9e51c9fffb3c95d1d1f8cacc7706f7d2d1"
60
60
  }
@@ -92,9 +92,7 @@ export class DataSetQuery {
92
92
  .andWhere('dataset.active = :active', { active: true })
93
93
  .andWhere(
94
94
  new Brackets(qb => {
95
- qb.where('dataset.supervisoryRole IN (:...roles)', { roles }).orWhere('dataset.entryRole IN (:...roles)', {
96
- roles
97
- })
95
+ qb.where('dataset.supervisoryRole IN (:...roles)').orWhere('dataset.entryRole IN (:...roles)')
98
96
  })
99
97
  )
100
98
  .setParameter('roles', roles)