@things-factory/dataset 7.0.86 → 7.1.1

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.0.86",
3
+ "version": "7.1.1",
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.0.86",
44
- "@things-factory/aws-base": "^7.0.86",
45
- "@things-factory/board-service": "^7.0.86",
46
- "@things-factory/env": "^7.0.86",
47
- "@things-factory/integration-base": "^7.0.86",
48
- "@things-factory/organization": "^7.0.86",
49
- "@things-factory/personalization": "^7.0.86",
50
- "@things-factory/scheduler-client": "^7.0.86",
51
- "@things-factory/shell": "^7.0.86",
52
- "@things-factory/work-shift": "^7.0.86",
53
- "@things-factory/worklist": "^7.0.86",
43
+ "@things-factory/auth-base": "^7.1.0",
44
+ "@things-factory/aws-base": "^7.1.0",
45
+ "@things-factory/board-service": "^7.1.0",
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",
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": "1a8702178b3b40e022f01fd293cb8779a25a84cd"
59
+ "gitHead": "3854f9e0cab75b6e54e8b1be862f8b72ddd44f75"
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