@things-factory/dataset 6.2.76 → 6.2.77
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/client/pages/data-entry/data-entry-list-page.ts +3 -2
- package/client/pages/data-key-set/data-key-set-list-page.ts +2 -2
- package/client/pages/data-report/data-report-list-page.ts +2 -2
- package/client/pages/data-sample/data-sample-list-page.ts +2 -2
- package/client/pages/data-sample/data-sample-search-page.ts +2 -2
- package/client/pages/data-set/data-set-list-page.ts +2 -2
- package/client/pages/data-summary/data-summary-list-page.ts +4 -4
- package/dist-client/pages/data-entry/data-entry-list-page.js +3 -2
- package/dist-client/pages/data-entry/data-entry-list-page.js.map +1 -1
- package/dist-client/pages/data-key-set/data-key-set-list-page.js +2 -2
- package/dist-client/pages/data-key-set/data-key-set-list-page.js.map +1 -1
- package/dist-client/pages/data-report/data-report-list-page.js +2 -2
- package/dist-client/pages/data-report/data-report-list-page.js.map +1 -1
- package/dist-client/pages/data-sample/data-sample-list-page.js +2 -2
- package/dist-client/pages/data-sample/data-sample-list-page.js.map +1 -1
- package/dist-client/pages/data-sample/data-sample-search-page.js +2 -2
- package/dist-client/pages/data-sample/data-sample-search-page.js.map +1 -1
- package/dist-client/pages/data-set/data-set-list-page.js +2 -2
- package/dist-client/pages/data-set/data-set-list-page.js.map +1 -1
- package/dist-client/pages/data-summary/data-summary-list-page.js +4 -4
- package/dist-client/pages/data-summary/data-summary-list-page.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/service/data-archive/data-archive-type.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +11 -11
- package/server/service/data-archive/data-archive-type.ts +2 -3
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@things-factory/dataset",
|
3
|
-
"version": "6.2.
|
3
|
+
"version": "6.2.77",
|
4
4
|
"main": "dist-server/index.js",
|
5
5
|
"browser": "dist-client/index.js",
|
6
6
|
"things-factory": true,
|
@@ -37,20 +37,20 @@
|
|
37
37
|
"@operato/shell": "^1.0.1",
|
38
38
|
"@operato/styles": "^1.0.0",
|
39
39
|
"@operato/utils": "^1.0.1",
|
40
|
-
"@things-factory/auth-base": "^6.2.
|
41
|
-
"@things-factory/aws-base": "^6.2.
|
42
|
-
"@things-factory/board-service": "^6.2.
|
40
|
+
"@things-factory/auth-base": "^6.2.77",
|
41
|
+
"@things-factory/aws-base": "^6.2.77",
|
42
|
+
"@things-factory/board-service": "^6.2.77",
|
43
43
|
"@things-factory/env": "^6.2.33",
|
44
|
-
"@things-factory/integration-base": "^6.2.
|
45
|
-
"@things-factory/organization": "^6.2.
|
46
|
-
"@things-factory/scheduler-client": "^6.2.
|
47
|
-
"@things-factory/shell": "^6.2.
|
48
|
-
"@things-factory/work-shift": "^6.2.
|
49
|
-
"@things-factory/worklist": "^6.2.
|
44
|
+
"@things-factory/integration-base": "^6.2.77",
|
45
|
+
"@things-factory/organization": "^6.2.77",
|
46
|
+
"@things-factory/scheduler-client": "^6.2.77",
|
47
|
+
"@things-factory/shell": "^6.2.77",
|
48
|
+
"@things-factory/work-shift": "^6.2.77",
|
49
|
+
"@things-factory/worklist": "^6.2.77",
|
50
50
|
"cron-parser": "^4.3.0",
|
51
51
|
"moment-timezone": "^0.5.40",
|
52
52
|
"simple-statistics": "^7.8.3",
|
53
53
|
"statistics": "^3.3.0"
|
54
54
|
},
|
55
|
-
"gitHead": "
|
55
|
+
"gitHead": "91090127331d8e4cdbbfeb2f82c8dfe8dc65bfee"
|
56
56
|
}
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { Field, ID, InputType, Int, ObjectType } from 'type-graphql'
|
2
2
|
import { DataArchive } from './data-archive'
|
3
|
-
import {
|
3
|
+
import { ScalarObject } from '@things-factory/shell'
|
4
4
|
|
5
5
|
@InputType()
|
6
6
|
export class NewDataArchive {
|
7
7
|
@Field({ nullable: true })
|
8
8
|
type?: 'manual' | 'automatic' | string
|
9
|
-
|
9
|
+
|
10
10
|
@Field(type => ScalarObject, { nullable: true })
|
11
11
|
requestParams?: { [key: string]: any }
|
12
12
|
|
@@ -15,7 +15,6 @@ export class NewDataArchive {
|
|
15
15
|
|
16
16
|
@Field({ nullable: true })
|
17
17
|
status?: string
|
18
|
-
|
19
18
|
}
|
20
19
|
|
21
20
|
@InputType()
|