@things-factory/dataset 7.1.0 → 7.1.2

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": "7.1.0",
3
+ "version": "7.1.2",
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.0",
44
- "@things-factory/aws-base": "^7.1.0",
45
- "@things-factory/board-service": "^7.1.0",
43
+ "@things-factory/auth-base": "^7.1.2",
44
+ "@things-factory/aws-base": "^7.1.2",
45
+ "@things-factory/board-service": "^7.1.2",
46
46
  "@things-factory/env": "^7.1.0",
47
- "@things-factory/integration-base": "^7.1.0",
48
- "@things-factory/organization": "^7.1.0",
49
- "@things-factory/personalization": "^7.1.0",
50
- "@things-factory/scheduler-client": "^7.1.0",
51
- "@things-factory/shell": "^7.1.0",
52
- "@things-factory/work-shift": "^7.1.0",
53
- "@things-factory/worklist": "^7.1.0",
47
+ "@things-factory/integration-base": "^7.1.2",
48
+ "@things-factory/organization": "^7.1.2",
49
+ "@things-factory/personalization": "^7.1.2",
50
+ "@things-factory/scheduler-client": "^7.1.2",
51
+ "@things-factory/shell": "^7.1.2",
52
+ "@things-factory/work-shift": "^7.1.2",
53
+ "@things-factory/worklist": "^7.1.2",
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": "f981b8116c3a91298dd20750eebd375990624904"
59
+ "gitHead": "95138ed4ce2af742446cd6e7859d2450c2aa40d2"
60
60
  }
@@ -10,7 +10,8 @@ export enum DataItemType {
10
10
  radio = 'radio',
11
11
  date = 'date',
12
12
  datetime = 'datetime',
13
- file = 'file'
13
+ file = 'file',
14
+ signature = 'signature'
14
15
  }
15
16
 
16
17
  registerEnumType(DataItemType, {
@@ -45,13 +46,15 @@ export class DataItem {
45
46
 
46
47
  @Field({
47
48
  nullable: true,
48
- description: 'Specifies a key name to be used as a property in a JSON-like object, representing a subfield of a dataset record.'
49
+ description:
50
+ 'Specifies a key name to be used as a property in a JSON-like object, representing a subfield of a dataset record.'
49
51
  })
50
52
  tag?: string
51
53
 
52
54
  @Field({
53
55
  nullable: true,
54
- description: 'Specifies a grouping identifier for data items with related content, allowing them to be displayed as subgroups within the overall dataset.'
56
+ description:
57
+ 'Specifies a grouping identifier for data items with related content, allowing them to be displayed as subgroups within the overall dataset.'
55
58
  })
56
59
  group?: string
57
60
 
@@ -102,13 +105,15 @@ export class DataItemPatch {
102
105
 
103
106
  @Field({
104
107
  nullable: true,
105
- description: 'Specifies a key name to be used as a property in a JSON-like object, representing a subfield of a dataset record.'
108
+ description:
109
+ 'Specifies a key name to be used as a property in a JSON-like object, representing a subfield of a dataset record.'
106
110
  })
107
111
  tag?: string
108
112
 
109
113
  @Field({
110
114
  nullable: true,
111
- description: 'Specifies a grouping identifier for data items with related content, allowing them to be displayed as subgroups within the overall dataset.'
115
+ description:
116
+ 'Specifies a grouping identifier for data items with related content, allowing them to be displayed as subgroups within the overall dataset.'
112
117
  })
113
118
  group?: string
114
119