@things-factory/dataset 8.0.85 → 8.0.86

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.85",
3
+ "version": "8.0.86",
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": "^8.0.0",
41
41
  "@operato/styles": "^8.0.0",
42
42
  "@operato/utils": "^8.0.0",
43
- "@things-factory/auth-base": "^8.0.75",
44
- "@things-factory/aws-base": "^8.0.75",
45
- "@things-factory/board-service": "^8.0.75",
43
+ "@things-factory/auth-base": "^8.0.86",
44
+ "@things-factory/aws-base": "^8.0.86",
45
+ "@things-factory/board-service": "^8.0.86",
46
46
  "@things-factory/env": "^8.0.64",
47
- "@things-factory/integration-base": "^8.0.75",
48
- "@things-factory/organization": "^8.0.76",
49
- "@things-factory/personalization": "^8.0.75",
50
- "@things-factory/scheduler-client": "^8.0.75",
51
- "@things-factory/shell": "^8.0.64",
52
- "@things-factory/work-shift": "^8.0.75",
53
- "@things-factory/worklist": "^8.0.84",
47
+ "@things-factory/integration-base": "^8.0.86",
48
+ "@things-factory/organization": "^8.0.86",
49
+ "@things-factory/personalization": "^8.0.86",
50
+ "@things-factory/scheduler-client": "^8.0.86",
51
+ "@things-factory/shell": "^8.0.86",
52
+ "@things-factory/work-shift": "^8.0.86",
53
+ "@things-factory/worklist": "^8.0.86",
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": "c4dd3885e20d29c6e5d25c8f495e151ff71e3433"
59
+ "gitHead": "28e364938d499b32aed41a8c664a8a2957b09b69"
60
60
  }
@@ -45,6 +45,7 @@ const DATABASE_TYPE = ORMCONFIG.type
45
45
  @Index('ix_data_sample_2', (dataSample: DataSample) => [dataSample.domain, dataSample.name, dataSample.workDate], {
46
46
  unique: false
47
47
  })
48
+ @Index('ix_data_sample_3', (dataSample: DataSample) => [dataSample.domain, dataSample.dataSet, dataSample.key03]) // WorkOrder.name 인덱스
48
49
  @ObjectType({ description: 'Entity for DataSample' })
49
50
  export class DataSample {
50
51
  @PrimaryGeneratedColumn('uuid')