@things-factory/dataset 6.2.84 → 6.2.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/client/pages/data-set/data-set-list-page.ts +10 -21
- package/dist-client/pages/data-set/data-set-list-page.js +2 -10
- package/dist-client/pages/data-set/data-set-list-page.js.map +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/helps/config/dataArchive.md +21 -0
- package/helps/config/dataReport.md +34 -0
- package/package.json +6 -6
@@ -0,0 +1,34 @@
|
|
1
|
+
# dataReport
|
2
|
+
|
3
|
+
데이타 리포트를 위한 설정
|
4
|
+
|
5
|
+
- jasper : jasper 서버 설정 정보
|
6
|
+
- shiny : shiny 서버 설정 정보
|
7
|
+
|
8
|
+
# 예시
|
9
|
+
|
10
|
+
```
|
11
|
+
module.exports = {
|
12
|
+
dataReport: {
|
13
|
+
jasper: {
|
14
|
+
endpoint: {
|
15
|
+
host: 'localhost',
|
16
|
+
port: 8090
|
17
|
+
},
|
18
|
+
datasource: {
|
19
|
+
database: ''
|
20
|
+
},
|
21
|
+
method: 'POST'
|
22
|
+
},
|
23
|
+
shiny: {
|
24
|
+
endpoint: {
|
25
|
+
host: 'localhost',
|
26
|
+
port: 3838
|
27
|
+
},
|
28
|
+
datasource: {
|
29
|
+
database: ''
|
30
|
+
}
|
31
|
+
}
|
32
|
+
},
|
33
|
+
}
|
34
|
+
```
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@things-factory/dataset",
|
3
|
-
"version": "6.2.
|
3
|
+
"version": "6.2.86",
|
4
4
|
"main": "dist-server/index.js",
|
5
5
|
"browser": "dist-client/index.js",
|
6
6
|
"things-factory": true,
|
@@ -38,19 +38,19 @@
|
|
38
38
|
"@operato/styles": "^1.0.0",
|
39
39
|
"@operato/utils": "^1.0.1",
|
40
40
|
"@things-factory/auth-base": "^6.2.84",
|
41
|
-
"@things-factory/aws-base": "^6.2.
|
42
|
-
"@things-factory/board-service": "^6.2.
|
41
|
+
"@things-factory/aws-base": "^6.2.86",
|
42
|
+
"@things-factory/board-service": "^6.2.86",
|
43
43
|
"@things-factory/env": "^6.2.33",
|
44
|
-
"@things-factory/integration-base": "^6.2.
|
44
|
+
"@things-factory/integration-base": "^6.2.86",
|
45
45
|
"@things-factory/organization": "^6.2.84",
|
46
46
|
"@things-factory/scheduler-client": "^6.2.84",
|
47
47
|
"@things-factory/shell": "^6.2.84",
|
48
48
|
"@things-factory/work-shift": "^6.2.84",
|
49
|
-
"@things-factory/worklist": "^6.2.
|
49
|
+
"@things-factory/worklist": "^6.2.86",
|
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": "f90a5c1ff2a93331bb6e375944972dc68dde8a1f"
|
56
56
|
}
|