@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.
Files changed (26) hide show
  1. package/client/pages/data-entry/data-entry-list-page.ts +3 -2
  2. package/client/pages/data-key-set/data-key-set-list-page.ts +2 -2
  3. package/client/pages/data-report/data-report-list-page.ts +2 -2
  4. package/client/pages/data-sample/data-sample-list-page.ts +2 -2
  5. package/client/pages/data-sample/data-sample-search-page.ts +2 -2
  6. package/client/pages/data-set/data-set-list-page.ts +2 -2
  7. package/client/pages/data-summary/data-summary-list-page.ts +4 -4
  8. package/dist-client/pages/data-entry/data-entry-list-page.js +3 -2
  9. package/dist-client/pages/data-entry/data-entry-list-page.js.map +1 -1
  10. package/dist-client/pages/data-key-set/data-key-set-list-page.js +2 -2
  11. package/dist-client/pages/data-key-set/data-key-set-list-page.js.map +1 -1
  12. package/dist-client/pages/data-report/data-report-list-page.js +2 -2
  13. package/dist-client/pages/data-report/data-report-list-page.js.map +1 -1
  14. package/dist-client/pages/data-sample/data-sample-list-page.js +2 -2
  15. package/dist-client/pages/data-sample/data-sample-list-page.js.map +1 -1
  16. package/dist-client/pages/data-sample/data-sample-search-page.js +2 -2
  17. package/dist-client/pages/data-sample/data-sample-search-page.js.map +1 -1
  18. package/dist-client/pages/data-set/data-set-list-page.js +2 -2
  19. package/dist-client/pages/data-set/data-set-list-page.js.map +1 -1
  20. package/dist-client/pages/data-summary/data-summary-list-page.js +4 -4
  21. package/dist-client/pages/data-summary/data-summary-list-page.js.map +1 -1
  22. package/dist-client/tsconfig.tsbuildinfo +1 -1
  23. package/dist-server/service/data-archive/data-archive-type.js.map +1 -1
  24. package/dist-server/tsconfig.tsbuildinfo +1 -1
  25. package/package.json +11 -11
  26. 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.76",
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.70",
41
- "@things-factory/aws-base": "^6.2.70",
42
- "@things-factory/board-service": "^6.2.75",
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.75",
45
- "@things-factory/organization": "^6.2.73",
46
- "@things-factory/scheduler-client": "^6.2.70",
47
- "@things-factory/shell": "^6.2.70",
48
- "@things-factory/work-shift": "^6.2.70",
49
- "@things-factory/worklist": "^6.2.75",
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": "9849310de2fc865e448dc929c04a2045b03adb65"
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 { ObjectRef, ScalarObject } from '@things-factory/shell'
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()