@things-factory/reference-app 5.0.0-y.0 → 5.0.0-zeta.10
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/bootstrap.js +30 -11
- package/client/editors/id-editor.js +1 -1
- package/client/pages/label-scan-page.js +4 -3
- package/config/config.development.js +1 -1
- package/config.development.js +21 -0
- package/db.sqlite +0 -0
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +40 -25
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +66 -31
- package/logs/application-2022-06-16-13.log +4 -0
- package/logs/application-2022-06-16-20.log +4 -0
- package/logs/application-2022-06-16-21.log +7 -0
- package/logs/application-2022-06-28-21.log +30 -0
- package/logs/application-2022-06-28-22.log +15 -0
- package/logs/application-2022-06-29-08.log +12 -0
- package/logs/application-2022-06-29-09.log +12 -0
- package/logs/application-2022-06-29-10.log +4 -0
- package/logs/application-2022-06-29-12.log +4 -0
- package/logs/application-2022-06-30-09.log +16 -0
- package/logs/application-2022-06-30-10.log +31 -0
- package/logs/application-2022-06-30-11.log +12 -0
- package/logs/application-2022-06-30-12.log +8 -0
- package/logs/application-2022-06-30-13.log +4 -0
- package/logs/{connections-2022-05-27-18.log → connections-2022-06-10-10.log} +0 -0
- package/logs/connections-2022-06-10-15.log +0 -0
- package/logs/connections-2022-06-12-17.log +0 -0
- package/logs/connections-2022-06-12-19.log +0 -0
- package/logs/connections-2022-06-16-13.log +0 -0
- package/logs/connections-2022-06-16-20.log +0 -0
- package/logs/connections-2022-06-16-21.log +0 -0
- package/logs/connections-2022-06-26-22.log +0 -0
- package/logs/connections-2022-06-26-23.log +0 -0
- package/logs/connections-2022-06-27-00.log +0 -0
- package/logs/connections-2022-06-28-21.log +0 -0
- package/logs/connections-2022-06-28-22.log +0 -0
- package/logs/connections-2022-06-29-08.log +0 -0
- package/logs/connections-2022-06-29-09.log +0 -0
- package/logs/connections-2022-06-29-10.log +0 -0
- package/logs/connections-2022-06-29-12.log +0 -0
- package/logs/connections-2022-06-30-09.log +0 -0
- package/logs/connections-2022-06-30-10.log +0 -0
- package/logs/connections-2022-06-30-11.log +0 -0
- package/logs/connections-2022-06-30-12.log +0 -0
- package/logs/connections-2022-06-30-13.log +0 -0
- package/package.json +55 -54
- package/logs/application-2022-06-08-11.log +0 -33
- package/logs/application-2022-06-08-12.log +0 -27
- package/logs/application-2022-06-08-13.log +0 -14
- package/logs/application-2022-06-08-15.log +0 -19
- package/logs/application-2022-06-08-16.log +0 -4
- package/logs/application-2022-06-08-17.log +0 -9
- package/logs/application-2022-06-08-18.log +0 -35
- package/logs/application-2022-06-09-00.log +0 -4
package/client/bootstrap.js
CHANGED
|
@@ -2,24 +2,30 @@ import '@things-factory/auth-ui' /* for domain-switch */
|
|
|
2
2
|
import '@things-factory/barcode-base' /* for <default-label-printer-setting-let> */
|
|
3
3
|
import '@things-factory/notification' /* for notification-badge */
|
|
4
4
|
import './components/ocr-viewpart'
|
|
5
|
+
import '@operato/dataset/usecase/ccp'
|
|
6
|
+
import '@operato/dataset/usecase/qc'
|
|
7
|
+
import '@operato/dataset/ox-property-editor-ccp-limits.js'
|
|
8
|
+
import '@operato/dataset/ox-property-editor-qc-limits.js'
|
|
5
9
|
|
|
6
|
-
import {
|
|
10
|
+
import { html } from 'lit-html'
|
|
11
|
+
|
|
12
|
+
import { OxGristEditorResourceId } from '@operato/app/grist-editor/ox-grist-editor-resource-id.js'
|
|
13
|
+
import { registerDefaultGroups } from '@operato/board/register-default-groups.js'
|
|
7
14
|
import { getEditor, registerEditor, registerRenderer } from '@operato/data-grist'
|
|
8
|
-
import {
|
|
15
|
+
import { appendViewpart, toggleOverlay, TOOL_POSITION, VIEWPART_POSITION } from '@operato/layout'
|
|
16
|
+
import { OxPropertyEditor } from '@operato/property-editor'
|
|
17
|
+
import { isMobileDevice } from '@operato/utils'
|
|
18
|
+
import { APPEND_APP_TOOL } from '@things-factory/apptool-base'
|
|
19
|
+
import { auth } from '@things-factory/auth-base'
|
|
20
|
+
import { setAuthManagementMenus } from '@things-factory/auth-ui'
|
|
9
21
|
import { setupMenuPart, updateMenuTemplate } from '@things-factory/lite-menu'
|
|
10
|
-
|
|
11
22
|
import { ADD_MORENDA } from '@things-factory/more-base'
|
|
12
23
|
import { ADD_SETTING } from '@things-factory/setting-base'
|
|
13
|
-
import {
|
|
24
|
+
import { navigate, store } from '@things-factory/shell'
|
|
25
|
+
|
|
26
|
+
import { getMenuTemplate } from './menu'
|
|
14
27
|
import { BarcodeRenderer } from './renderers/barcode-renderer'
|
|
15
28
|
import { IdRenderer } from './renderers/id-renderer'
|
|
16
|
-
import { OxGristEditorResourceId } from '@operato/app/grist-editor/ox-grist-editor-resource-id.js'
|
|
17
|
-
import { auth } from '@things-factory/auth-base'
|
|
18
|
-
import { getMenuTemplate } from './menu'
|
|
19
|
-
import { html } from 'lit-html'
|
|
20
|
-
import { registerDefaultGroups } from '@operato/board/register-default-groups.js'
|
|
21
|
-
import { setAuthManagementMenus } from '@things-factory/auth-ui'
|
|
22
|
-
import { isMobileDevice } from '@operato/utils'
|
|
23
29
|
|
|
24
30
|
console.log(
|
|
25
31
|
`%c
|
|
@@ -38,6 +44,11 @@ export default function bootstrap() {
|
|
|
38
44
|
registerEditor('id', OxGristEditorResourceId)
|
|
39
45
|
registerEditor('barcode', getEditor('string'))
|
|
40
46
|
|
|
47
|
+
OxPropertyEditor.register({
|
|
48
|
+
'ccp-limits': 'ox-property-editor-ccp-limits',
|
|
49
|
+
'qc-limits': 'ox-property-editor-qc-limits'
|
|
50
|
+
})
|
|
51
|
+
|
|
41
52
|
/* set board-modeller group and default templates */
|
|
42
53
|
registerDefaultGroups()
|
|
43
54
|
|
|
@@ -145,6 +156,14 @@ export default function bootstrap() {
|
|
|
145
156
|
type: ADD_SETTING,
|
|
146
157
|
setting: {
|
|
147
158
|
seq: 21,
|
|
159
|
+
template: html` <lite-menu-setting-let></lite-menu-setting-let> `
|
|
160
|
+
}
|
|
161
|
+
})
|
|
162
|
+
|
|
163
|
+
store.dispatch({
|
|
164
|
+
type: ADD_SETTING,
|
|
165
|
+
setting: {
|
|
166
|
+
seq: 22,
|
|
148
167
|
template: html` <default-label-printer-setting-let></default-label-printer-setting-let> `
|
|
149
168
|
}
|
|
150
169
|
})
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import '@things-factory/barcode-ui'
|
|
2
2
|
import '@operato/input/ox-input-barcode.js'
|
|
3
|
+
import '@operato/barcode/ox-barcode.js'
|
|
3
4
|
|
|
4
5
|
import { css, html } from 'lit'
|
|
5
6
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
@@ -145,17 +146,17 @@ class LabelScanPage extends connect(store)(PageView) {
|
|
|
145
146
|
<section>
|
|
146
147
|
<h2>Barcode Image Component</h2>
|
|
147
148
|
<p>
|
|
148
|
-
barcode
|
|
149
|
+
ox-barcode 컴포넌트는 바코드 이미지를 보여준다. 바코드 이미지를 클릭하면 이미지 파일을 다운로드 받을 수 있다.
|
|
149
150
|
</p>
|
|
150
151
|
|
|
151
|
-
<barcode
|
|
152
|
+
<ox-barcode
|
|
152
153
|
.bcid=${bcid}
|
|
153
154
|
.value=${value}
|
|
154
155
|
.bcWidth=${bcWidth}
|
|
155
156
|
.bcHeight=${bcHeight}
|
|
156
157
|
.bcScale=${bcScale}
|
|
157
158
|
.padding=${padding}
|
|
158
|
-
></barcode
|
|
159
|
+
></ox-barcode>
|
|
159
160
|
</section>
|
|
160
161
|
`
|
|
161
162
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
subdomain: 'system',
|
|
3
|
+
awsAppSync: {
|
|
4
|
+
apiUrl: '',
|
|
5
|
+
apiKey: ''
|
|
6
|
+
},
|
|
7
|
+
raygun: {
|
|
8
|
+
apiKey: 'VvPzjH0zKdOM0hynpycw'
|
|
9
|
+
},
|
|
10
|
+
ormconfig: {
|
|
11
|
+
name: 'default',
|
|
12
|
+
type: 'postgres',
|
|
13
|
+
database: 'reference_app',
|
|
14
|
+
username: 'ibex_master',
|
|
15
|
+
password: 'iBe10dev$%^',
|
|
16
|
+
host: 'localhost',
|
|
17
|
+
port: 5432,
|
|
18
|
+
synchronize: true,
|
|
19
|
+
logging: true
|
|
20
|
+
}
|
|
21
|
+
}
|
package/db.sqlite
CHANGED
|
Binary file
|
|
@@ -6,45 +6,60 @@
|
|
|
6
6
|
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/application-2022-06-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1656418962507,
|
|
10
|
+
"name": "logs/application-2022-06-28-21.log",
|
|
11
|
+
"hash": "23fe0b0684a3ad9558c740978a331385140d1de284b69b7abaa0b3bb82f08fce"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"date":
|
|
15
|
-
"name": "logs/application-2022-06-
|
|
16
|
-
"hash": "
|
|
14
|
+
"date": 1656421222969,
|
|
15
|
+
"name": "logs/application-2022-06-28-22.log",
|
|
16
|
+
"hash": "58bae995febbe51468e3925fed5b53906e20aa7605070ebb6239db4e660eb806"
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
|
-
"date":
|
|
20
|
-
"name": "logs/application-2022-06-08
|
|
21
|
-
"hash": "
|
|
19
|
+
"date": 1656459524303,
|
|
20
|
+
"name": "logs/application-2022-06-29-08.log",
|
|
21
|
+
"hash": "a719855c3583230f88424c7755ecad4504dcaeab91ed81f94feb5939fe40ec37"
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
|
-
"date":
|
|
25
|
-
"name": "logs/application-2022-06-
|
|
26
|
-
"hash": "
|
|
24
|
+
"date": 1656460845717,
|
|
25
|
+
"name": "logs/application-2022-06-29-09.log",
|
|
26
|
+
"hash": "295cfdaf7fa6dfe3d1b97eb3b3e833550bc53ab39a8f41683e3927b2efab297c"
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
|
-
"date":
|
|
30
|
-
"name": "logs/application-2022-06-
|
|
31
|
-
"hash": "
|
|
29
|
+
"date": 1656465092373,
|
|
30
|
+
"name": "logs/application-2022-06-29-10.log",
|
|
31
|
+
"hash": "32b05dd23454009b7681f3b9d82ae1dd3e377ac0326c6f53e15c817edae85d7d"
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
|
-
"date":
|
|
35
|
-
"name": "logs/application-2022-06-
|
|
36
|
-
"hash": "
|
|
34
|
+
"date": 1656471921491,
|
|
35
|
+
"name": "logs/application-2022-06-29-12.log",
|
|
36
|
+
"hash": "27aeb88b42bbda776b575028e8ece31f39c9becab35e3328bd770096f5f782bc"
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
|
-
"date":
|
|
40
|
-
"name": "logs/application-2022-06-
|
|
41
|
-
"hash": "
|
|
39
|
+
"date": 1656550032295,
|
|
40
|
+
"name": "logs/application-2022-06-30-09.log",
|
|
41
|
+
"hash": "7e3b2ed6dbae4c095131cae27a01702964da0deedde126b9f596ef3bd85961a9"
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
|
-
"date":
|
|
45
|
-
"name": "logs/application-2022-06-
|
|
46
|
-
"hash": "
|
|
44
|
+
"date": 1656553264660,
|
|
45
|
+
"name": "logs/application-2022-06-30-10.log",
|
|
46
|
+
"hash": "9bb3d04c501faf7fd8496a08ef0999e840ad8e4d5389dfbfa61551cf11dd9d61"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"date": 1656554639833,
|
|
50
|
+
"name": "logs/application-2022-06-30-11.log",
|
|
51
|
+
"hash": "bd5184b9ed63d78c2181a5f067591dadf0cfdb7be83f0ddc3b445fb578da7936"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"date": 1656559440479,
|
|
55
|
+
"name": "logs/application-2022-06-30-12.log",
|
|
56
|
+
"hash": "d2ed29f4fff2fb692d23ca424be576d9f1c8ef40b32df7e9b0f37784786f024f"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"date": 1656562672807,
|
|
60
|
+
"name": "logs/application-2022-06-30-13.log",
|
|
61
|
+
"hash": "10df0bb0ef3410d0247d83a1722f4e6ea7829a9714f5e9a31fa52c36a051c4ab"
|
|
47
62
|
}
|
|
48
63
|
],
|
|
49
|
-
"hashType": "
|
|
64
|
+
"hashType": "sha256"
|
|
50
65
|
}
|
|
@@ -6,55 +6,90 @@
|
|
|
6
6
|
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/connections-2022-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1655355071048,
|
|
10
|
+
"name": "logs/connections-2022-06-16-13.log",
|
|
11
|
+
"hash": "187b294d47fa7b0b42e0047b4b1f1eba"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"date":
|
|
15
|
-
"name": "logs/connections-2022-06-
|
|
16
|
-
"hash": "
|
|
14
|
+
"date": 1655379001351,
|
|
15
|
+
"name": "logs/connections-2022-06-16-20.log",
|
|
16
|
+
"hash": "6b85ff112e4ea92aa6ca1c1a8d51ccd0"
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
|
-
"date":
|
|
20
|
-
"name": "logs/connections-2022-06-
|
|
21
|
-
"hash": "
|
|
19
|
+
"date": 1655383325544,
|
|
20
|
+
"name": "logs/connections-2022-06-16-21.log",
|
|
21
|
+
"hash": "0912d5406f92102e817b19d82b47ecee"
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
|
-
"date":
|
|
25
|
-
"name": "logs/connections-2022-06-
|
|
26
|
-
"hash": "
|
|
24
|
+
"date": 1656251154435,
|
|
25
|
+
"name": "logs/connections-2022-06-26-22.log",
|
|
26
|
+
"hash": "36eb06457c97cf716352d281e399f5e53961beceb0efb23f8ee0725b9304649f"
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
|
-
"date":
|
|
30
|
-
"name": "logs/connections-2022-06-
|
|
31
|
-
"hash": "
|
|
29
|
+
"date": 1656255416369,
|
|
30
|
+
"name": "logs/connections-2022-06-26-23.log",
|
|
31
|
+
"hash": "9339d70699aaf6a87149651f7f921dcf313217d968e0963a83b16080f5bf5235"
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
|
-
"date":
|
|
35
|
-
"name": "logs/connections-2022-06-
|
|
36
|
-
"hash": "
|
|
34
|
+
"date": 1656255645216,
|
|
35
|
+
"name": "logs/connections-2022-06-27-00.log",
|
|
36
|
+
"hash": "34ce54d799d446dbd932f55ec8717756f2304ec842d88461c86cd1f7a0af0d98"
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
|
-
"date":
|
|
40
|
-
"name": "logs/connections-2022-06-
|
|
41
|
-
"hash": "
|
|
39
|
+
"date": 1656418966951,
|
|
40
|
+
"name": "logs/connections-2022-06-28-21.log",
|
|
41
|
+
"hash": "21c0c18ae8055601c1c31eacd85dda92915166a4da4e40b7152d8b035b4e71e2"
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
|
-
"date":
|
|
45
|
-
"name": "logs/connections-2022-06-
|
|
46
|
-
"hash": "
|
|
44
|
+
"date": 1656421278851,
|
|
45
|
+
"name": "logs/connections-2022-06-28-22.log",
|
|
46
|
+
"hash": "6da9a43325b4d224a68974120143adf8328ece2551afc421f52233bc8f6e5553"
|
|
47
47
|
},
|
|
48
48
|
{
|
|
49
|
-
"date":
|
|
50
|
-
"name": "logs/connections-2022-06-08
|
|
51
|
-
"hash": "
|
|
49
|
+
"date": 1656459528243,
|
|
50
|
+
"name": "logs/connections-2022-06-29-08.log",
|
|
51
|
+
"hash": "e648257303d766b5c5ec2c6be6f802c1115232d7d5d4c424451eecceb5844a3d"
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
|
-
"date":
|
|
55
|
-
"name": "logs/connections-2022-06-09
|
|
56
|
-
"hash": "
|
|
54
|
+
"date": 1656460848585,
|
|
55
|
+
"name": "logs/connections-2022-06-29-09.log",
|
|
56
|
+
"hash": "b69f133c7e8470b9241ce66b2c4e14afdb43efe47cf3bfbfbe5e368f2e9f6b09"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"date": 1656465102433,
|
|
60
|
+
"name": "logs/connections-2022-06-29-10.log",
|
|
61
|
+
"hash": "c9f9844ac598ba664064fc3c5e69ed05bbcc58cd2d961291dbc8e60bd7669690"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"date": 1656471924737,
|
|
65
|
+
"name": "logs/connections-2022-06-29-12.log",
|
|
66
|
+
"hash": "63d5164fb2ea63d96b2b41879b0c300bed3b480839c69a6dfe162d2c06217682"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"date": 1656550035947,
|
|
70
|
+
"name": "logs/connections-2022-06-30-09.log",
|
|
71
|
+
"hash": "2d1dd8721163984bd889fd430f85976a2a08b004a4e8680f6b48454e6b8b3efb"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"date": 1656553397758,
|
|
75
|
+
"name": "logs/connections-2022-06-30-10.log",
|
|
76
|
+
"hash": "d8babca420f14efa7e9f20c7821c719b08eea8640be599ba9479a874b0fc5ec9"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"date": 1656554643204,
|
|
80
|
+
"name": "logs/connections-2022-06-30-11.log",
|
|
81
|
+
"hash": "cd843441a9c895a65a5cea5410dc638ee49eac81ae62f1190b0d29692fc79e8f"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"date": 1656559447521,
|
|
85
|
+
"name": "logs/connections-2022-06-30-12.log",
|
|
86
|
+
"hash": "7586ebbaa9d51e48bd675b86dcb5f4055830f914e1d06b2dfd7232e42af8d27a"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"date": 1656562676134,
|
|
90
|
+
"name": "logs/connections-2022-06-30-13.log",
|
|
91
|
+
"hash": "78d43089d38d6b13441d478e6edda7556ca5b0c1e09cc39430e87d33309bd83c"
|
|
57
92
|
}
|
|
58
93
|
],
|
|
59
|
-
"hashType": "
|
|
94
|
+
"hashType": "sha256"
|
|
60
95
|
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2022-06-16T13:51:09+09:00 info: File Storage is Ready.
|
|
2
|
+
2022-06-16T13:51:14+09:00 info: Database connection established
|
|
3
|
+
2022-06-16T13:51:15+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2022-06-16T13:51:15+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2022-06-16T20:30:00+09:00 info: File Storage is Ready.
|
|
2
|
+
2022-06-16T20:30:04+09:00 info: Database connection established
|
|
3
|
+
2022-06-16T20:30:05+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2022-06-16T20:30:05+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
2022-06-16T21:23:02+09:00 error: Unauthorized!
|
|
2
|
+
2022-06-16T21:23:06+09:00 error: Unauthorized!
|
|
3
|
+
2022-06-16T21:23:24+09:00 error: Unauthorized!
|
|
4
|
+
2022-06-16T21:42:03+09:00 info: File Storage is Ready.
|
|
5
|
+
2022-06-16T21:42:09+09:00 info: Database connection established
|
|
6
|
+
2022-06-16T21:42:10+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
7
|
+
2022-06-16T21:42:10+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
2022-06-28T21:22:45+09:00 info: File Storage is Ready.
|
|
2
|
+
2022-06-28T21:22:50+09:00 info: Database connection established
|
|
3
|
+
2022-06-28T21:22:50+09:00 error: SQLITE_ERROR: near "AUTOINCREMENT": syntax error
|
|
4
|
+
2022-06-28T21:22:51+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
5
|
+
2022-06-28T21:22:51+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
6
|
+
2022-06-28T21:32:20+09:00 info: File Storage is Ready.
|
|
7
|
+
2022-06-28T21:32:26+09:00 info: Database connection established
|
|
8
|
+
2022-06-28T21:32:26+09:00 error: SQLITE_CONSTRAINT: NOT NULL constraint failed: temporary_data_sets.version
|
|
9
|
+
2022-06-28T21:32:27+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
10
|
+
2022-06-28T21:32:27+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
11
|
+
2022-06-28T21:33:59+09:00 error: SQLITE_ERROR: no such column: dataset.version
|
|
12
|
+
2022-06-28T21:36:49+09:00 info: File Storage is Ready.
|
|
13
|
+
2022-06-28T21:37:06+09:00 info: File Storage is Ready.
|
|
14
|
+
2022-06-28T21:37:11+09:00 info: Database connection established
|
|
15
|
+
2022-06-28T21:37:13+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
16
|
+
2022-06-28T21:37:13+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
17
|
+
2022-06-28T21:42:44+09:00 error: Variable "$ids" got invalid value null at "ids[0]"; Expected non-nullable type "String!" not to be null.
|
|
18
|
+
2022-06-28T21:50:41+09:00 info: File Storage is Ready.
|
|
19
|
+
2022-06-28T21:50:46+09:00 info: Database connection established
|
|
20
|
+
2022-06-28T21:50:47+09:00 error: SQLITE_CONSTRAINT: NOT NULL constraint failed: temporary_data_sets.version
|
|
21
|
+
2022-06-28T21:50:48+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
22
|
+
2022-06-28T21:50:48+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
23
|
+
2022-06-28T21:51:59+09:00 error: SQLITE_ERROR: no such column: DataSample.data_set_version
|
|
24
|
+
2022-06-28T21:52:14+09:00 error: SQLITE_ERROR: no such column: DataSample.data_set_version
|
|
25
|
+
2022-06-28T21:52:45+09:00 info: File Storage is Ready.
|
|
26
|
+
2022-06-28T21:52:59+09:00 info: File Storage is Ready.
|
|
27
|
+
2022-06-28T21:53:03+09:00 info: Database connection established
|
|
28
|
+
2022-06-28T21:53:03+09:00 error: SQLITE_CONSTRAINT: NOT NULL constraint failed: temporary_data_sets.version
|
|
29
|
+
2022-06-28T21:53:04+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
30
|
+
2022-06-28T21:53:04+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
2022-06-28T22:00:22+09:00 error: SQLITE_ERROR: no such column: DataSample.data_set_version
|
|
2
|
+
2022-06-28T22:01:17+09:00 info: File Storage is Ready.
|
|
3
|
+
2022-06-28T22:01:22+09:00 info: Database connection established
|
|
4
|
+
2022-06-28T22:01:23+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
5
|
+
2022-06-28T22:01:23+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
6
|
+
2022-06-28T22:12:19+09:00 info: File Storage is Ready.
|
|
7
|
+
2022-06-28T22:12:37+09:00 info: File Storage is Ready.
|
|
8
|
+
2022-06-28T22:12:42+09:00 info: Database connection established
|
|
9
|
+
2022-06-28T22:12:43+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
10
|
+
2022-06-28T22:12:43+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
11
|
+
2022-06-28T22:15:58+09:00 info: File Storage is Ready.
|
|
12
|
+
2022-06-28T22:16:02+09:00 info: Database connection established
|
|
13
|
+
2022-06-28T22:16:03+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
14
|
+
2022-06-28T22:16:03+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
15
|
+
2022-06-28T22:19:02+09:00 error: stream is not readable
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
2022-06-29T08:38:46+09:00 info: File Storage is Ready.
|
|
2
|
+
2022-06-29T08:38:51+09:00 info: Database connection established
|
|
3
|
+
2022-06-29T08:38:52+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2022-06-29T08:38:52+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
+
2022-06-29T08:52:31+09:00 info: File Storage is Ready.
|
|
6
|
+
2022-06-29T08:52:36+09:00 info: Database connection established
|
|
7
|
+
2022-06-29T08:52:38+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
8
|
+
2022-06-29T08:52:38+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
9
|
+
2022-06-29T08:58:29+09:00 info: File Storage is Ready.
|
|
10
|
+
2022-06-29T08:58:34+09:00 error: column "version" contains null values
|
|
11
|
+
2022-06-29T08:58:35+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
12
|
+
2022-06-29T08:58:35+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
2022-06-29T09:00:47+09:00 info: File Storage is Ready.
|
|
2
|
+
2022-06-29T09:00:52+09:00 info: Database connection established
|
|
3
|
+
2022-06-29T09:00:53+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2022-06-29T09:00:53+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
+
2022-06-29T09:19:39+09:00 info: File Storage is Ready.
|
|
6
|
+
2022-06-29T09:19:45+09:00 info: Database connection established
|
|
7
|
+
2022-06-29T09:19:46+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
8
|
+
2022-06-29T09:19:46+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
9
|
+
2022-06-29T09:23:46+09:00 info: File Storage is Ready.
|
|
10
|
+
2022-06-29T09:23:51+09:00 info: Database connection established
|
|
11
|
+
2022-06-29T09:23:51+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
12
|
+
2022-06-29T09:23:51+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2022-06-29T10:11:38+09:00 info: File Storage is Ready.
|
|
2
|
+
2022-06-29T10:11:53+09:00 info: Database connection established
|
|
3
|
+
2022-06-29T10:11:56+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2022-06-29T10:11:56+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2022-06-29T12:05:23+09:00 info: File Storage is Ready.
|
|
2
|
+
2022-06-29T12:05:28+09:00 info: Database connection established
|
|
3
|
+
2022-06-29T12:05:29+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2022-06-29T12:05:29+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
2022-06-30T09:47:14+09:00 info: File Storage is Ready.
|
|
2
|
+
2022-06-30T09:47:19+09:00 error: connect ECONNREFUSED 127.0.0.1:5432
|
|
3
|
+
2022-06-30T09:47:20+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2022-06-30T09:47:20+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
+
2022-06-30T09:48:05+09:00 info: File Storage is Ready.
|
|
6
|
+
2022-06-30T09:48:12+09:00 info: Database connection established
|
|
7
|
+
2022-06-30T09:48:13+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
8
|
+
2022-06-30T09:48:13+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
9
|
+
2022-06-30T09:50:18+09:00 error: Cannot query field "dataSample" on type "DataOoc". Did you mean "dataSet"?
|
|
10
|
+
2022-06-30T09:52:29+09:00 error: Cannot query field "dataSample" on type "DataOoc". Did you mean "dataSet"?
|
|
11
|
+
2022-06-30T09:56:38+09:00 error: Cannot query field "dataItems" on type "DataOoc". Did you mean "dataSet"?
|
|
12
|
+
2022-06-30T09:57:56+09:00 info: File Storage is Ready.
|
|
13
|
+
2022-06-30T09:58:02+09:00 info: Database connection established
|
|
14
|
+
2022-06-30T09:58:03+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
15
|
+
2022-06-30T09:58:03+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
16
|
+
2022-06-30T09:59:32+09:00 error: Field "dataItems" of type "[DataItem!]!" must have a selection of subfields. Did you mean "dataItems { ... }"?
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
2022-06-30T10:41:04+09:00 error: Field "dataItems" of type "[DataItem!]!" must have a selection of subfields. Did you mean "dataItems { ... }"?
|
|
2
|
+
2022-06-30T10:41:18+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
3
|
+
2022-06-30T10:43:15+09:00 info: File Storage is Ready.
|
|
4
|
+
2022-06-30T10:43:30+09:00 info: Database connection established
|
|
5
|
+
2022-06-30T10:43:33+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
6
|
+
2022-06-30T10:43:33+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
7
|
+
2022-06-30T10:47:01+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
8
|
+
2022-06-30T10:50:58+09:00 info: File Storage is Ready.
|
|
9
|
+
2022-06-30T10:51:03+09:00 info: Database connection established
|
|
10
|
+
2022-06-30T10:51:04+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
11
|
+
2022-06-30T10:51:04+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
12
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
13
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
14
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
15
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
16
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
17
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
18
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
19
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
20
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
21
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
22
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
23
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
24
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
25
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
26
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
27
|
+
2022-06-30T10:52:19+09:00 error: Expected Iterable, but did not find one for field "DataSample.dataItems".
|
|
28
|
+
2022-06-30T10:55:50+09:00 info: File Storage is Ready.
|
|
29
|
+
2022-06-30T10:55:56+09:00 info: Database connection established
|
|
30
|
+
2022-06-30T10:55:57+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
31
|
+
2022-06-30T10:55:57+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
2022-06-30T11:04:01+09:00 info: File Storage is Ready.
|
|
2
|
+
2022-06-30T11:04:08+09:00 info: Database connection established
|
|
3
|
+
2022-06-30T11:04:09+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2022-06-30T11:04:09+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
+
2022-06-30T11:41:10+09:00 info: File Storage is Ready.
|
|
6
|
+
2022-06-30T11:41:16+09:00 info: Database connection established
|
|
7
|
+
2022-06-30T11:41:17+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
8
|
+
2022-06-30T11:41:17+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
9
|
+
2022-06-30T11:50:46+09:00 info: File Storage is Ready.
|
|
10
|
+
2022-06-30T11:50:53+09:00 info: Database connection established
|
|
11
|
+
2022-06-30T11:50:53+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
12
|
+
2022-06-30T11:50:53+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
2022-06-30T12:24:05+09:00 info: File Storage is Ready.
|
|
2
|
+
2022-06-30T12:24:17+09:00 info: Database connection established
|
|
3
|
+
2022-06-30T12:24:18+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2022-06-30T12:24:18+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
+
2022-06-30T12:41:44+09:00 info: File Storage is Ready.
|
|
6
|
+
2022-06-30T12:41:49+09:00 info: Database connection established
|
|
7
|
+
2022-06-30T12:41:50+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
8
|
+
2022-06-30T12:41:50+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2022-06-30T13:17:54+09:00 info: File Storage is Ready.
|
|
2
|
+
2022-06-30T13:18:01+09:00 info: Database connection established
|
|
3
|
+
2022-06-30T13:18:02+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2022-06-30T13:18:02+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/reference-app",
|
|
3
|
-
"version": "5.0.0-
|
|
3
|
+
"version": "5.0.0-zeta.10",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -37,61 +37,62 @@
|
|
|
37
37
|
"docker:run": "docker run -it -p 4000:3000 hatiolab/reference-app:latest"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@hatiolab/things-scene": "^3.0.
|
|
40
|
+
"@hatiolab/things-scene": "^3.0.16",
|
|
41
41
|
"@material/mwc-checkbox": "^0.25.3",
|
|
42
|
-
"@operato/
|
|
43
|
-
"@operato/
|
|
44
|
-
"@operato/
|
|
45
|
-
"@operato/
|
|
46
|
-
"@operato/
|
|
47
|
-
"@operato/
|
|
48
|
-
"@operato/
|
|
49
|
-
"@operato/
|
|
50
|
-
"@operato/
|
|
51
|
-
"@operato/
|
|
52
|
-
"@operato/
|
|
53
|
-
"@operato/scene-
|
|
54
|
-
"@operato/scene-
|
|
55
|
-
"@operato/scene-
|
|
56
|
-
"@operato/scene-
|
|
57
|
-
"@operato/scene-
|
|
58
|
-
"@operato/scene-
|
|
59
|
-
"@operato/scene-
|
|
60
|
-
"@operato/scene-
|
|
61
|
-
"@operato/scene-
|
|
62
|
-
"@operato/scene-
|
|
63
|
-
"@operato/
|
|
64
|
-
"@operato/
|
|
65
|
-
"@
|
|
66
|
-
"@things-factory/
|
|
67
|
-
"@things-factory/
|
|
68
|
-
"@things-factory/
|
|
69
|
-
"@things-factory/
|
|
70
|
-
"@things-factory/board-
|
|
71
|
-
"@things-factory/
|
|
72
|
-
"@things-factory/
|
|
73
|
-
"@things-factory/
|
|
74
|
-
"@things-factory/
|
|
75
|
-
"@things-factory/
|
|
76
|
-
"@things-factory/export-ui
|
|
77
|
-
"@things-factory/
|
|
78
|
-
"@things-factory/
|
|
79
|
-
"@things-factory/
|
|
80
|
-
"@things-factory/
|
|
81
|
-
"@things-factory/
|
|
82
|
-
"@things-factory/
|
|
83
|
-
"@things-factory/
|
|
84
|
-
"@things-factory/
|
|
85
|
-
"@things-factory/
|
|
86
|
-
"@things-factory/
|
|
87
|
-
"@things-factory/
|
|
88
|
-
"@things-factory/setting-
|
|
89
|
-
"@things-factory/
|
|
90
|
-
"@things-factory/
|
|
91
|
-
"@things-factory/
|
|
42
|
+
"@operato/barcode": "^1.0.0-beta.41",
|
|
43
|
+
"@operato/data-grist": "^1.0.0-beta.41",
|
|
44
|
+
"@operato/ghost-print": "^1.0.0-beta.41",
|
|
45
|
+
"@operato/graphql": "^1.0.0-beta.41",
|
|
46
|
+
"@operato/help": "^1.0.0-beta.41",
|
|
47
|
+
"@operato/i18n": "^1.0.0-beta.41",
|
|
48
|
+
"@operato/input": "^1.0.0-beta.41",
|
|
49
|
+
"@operato/layout": "^1.0.0-beta.41",
|
|
50
|
+
"@operato/ocr": "^1.0.0-beta.41",
|
|
51
|
+
"@operato/popup": "^1.0.0-beta.41",
|
|
52
|
+
"@operato/pull-to-refresh": "^1.0.0-beta.41",
|
|
53
|
+
"@operato/scene-chartjs": "^1.0.0-alpha.27",
|
|
54
|
+
"@operato/scene-clock": "^1.0.0-alpha.27",
|
|
55
|
+
"@operato/scene-form": "^1.0.0-alpha.27",
|
|
56
|
+
"@operato/scene-gauge": "^1.0.0-alpha.27",
|
|
57
|
+
"@operato/scene-half-roundrect": "^1.0.0-alpha.27",
|
|
58
|
+
"@operato/scene-indoor-map": "^1.0.0-alpha.27",
|
|
59
|
+
"@operato/scene-news-ticker": "^1.0.0-alpha.27",
|
|
60
|
+
"@operato/scene-progressbar": "^1.0.0-alpha.27",
|
|
61
|
+
"@operato/scene-random": "^1.0.0-alpha.27",
|
|
62
|
+
"@operato/scene-switch": "^1.0.0-alpha.27",
|
|
63
|
+
"@operato/scene-tab": "^1.0.0-alpha.27",
|
|
64
|
+
"@operato/shell": "^1.0.0-beta.41",
|
|
65
|
+
"@operato/utils": "^1.0.0-beta.41",
|
|
66
|
+
"@things-factory/api": "^5.0.0-zeta.10",
|
|
67
|
+
"@things-factory/apptool-ui": "^5.0.0-zeta.10",
|
|
68
|
+
"@things-factory/attachment-base": "^5.0.0-zeta.10",
|
|
69
|
+
"@things-factory/auth-ui": "^5.0.0-zeta.10",
|
|
70
|
+
"@things-factory/board-service": "^5.0.0-zeta.10",
|
|
71
|
+
"@things-factory/board-ui": "^5.0.0-zeta.10",
|
|
72
|
+
"@things-factory/ccp": "^5.0.0-zeta.10",
|
|
73
|
+
"@things-factory/context-ui": "^5.0.0-zeta.10",
|
|
74
|
+
"@things-factory/dashboard": "^5.0.0-zeta.10",
|
|
75
|
+
"@things-factory/dataset": "^5.0.0-zeta.10",
|
|
76
|
+
"@things-factory/export-ui": "^5.0.0-zeta.10",
|
|
77
|
+
"@things-factory/export-ui-excel": "^5.0.0-zeta.10",
|
|
78
|
+
"@things-factory/grist-ui": "^5.0.0-zeta.10",
|
|
79
|
+
"@things-factory/help": "^5.0.0-zeta.10",
|
|
80
|
+
"@things-factory/integration-ui": "^5.0.0-zeta.10",
|
|
81
|
+
"@things-factory/lite-menu": "^5.0.0-zeta.10",
|
|
82
|
+
"@things-factory/more-ui": "^5.0.0-zeta.10",
|
|
83
|
+
"@things-factory/notification": "^5.0.0-zeta.10",
|
|
84
|
+
"@things-factory/oauth2-client": "^5.0.0-zeta.10",
|
|
85
|
+
"@things-factory/print-ui": "^5.0.0-zeta.10",
|
|
86
|
+
"@things-factory/qc": "^5.0.0-zeta.10",
|
|
87
|
+
"@things-factory/resource-ui": "^5.0.0-zeta.10",
|
|
88
|
+
"@things-factory/setting-base": "^5.0.0-zeta.10",
|
|
89
|
+
"@things-factory/setting-ui": "^5.0.0-zeta.10",
|
|
90
|
+
"@things-factory/shell": "^5.0.0-zeta.10",
|
|
91
|
+
"@things-factory/system-ui": "^5.0.0-zeta.10",
|
|
92
|
+
"@things-factory/work-shift": "^5.0.0-zeta.10"
|
|
92
93
|
},
|
|
93
94
|
"devDependencies": {
|
|
94
|
-
"@things-factory/builder": "^5.0.0-
|
|
95
|
+
"@things-factory/builder": "^5.0.0-zeta.10"
|
|
95
96
|
},
|
|
96
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "8e48b626f92a0fa3c19c25a5cf5c04b8b7e60478"
|
|
97
98
|
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
2022-06-08T11:17:52+09:00 info: File Storage is Ready.
|
|
2
|
-
2022-06-08T11:17:57+09:00 info: Database connection established
|
|
3
|
-
2022-06-08T11:17:58+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
-
2022-06-08T11:17:58+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
-
2022-06-08T11:20:02+09:00 error: Cannot destructure property 'relationColumn' of 'filtersMap[name]' as it is undefined.
|
|
6
|
-
2022-06-08T11:20:28+09:00 error: Cannot destructure property 'relationColumn' of 'filtersMap[name]' as it is undefined.
|
|
7
|
-
2022-06-08T11:22:54+09:00 info: File Storage is Ready.
|
|
8
|
-
2022-06-08T11:22:58+09:00 info: Database connection established
|
|
9
|
-
2022-06-08T11:23:00+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
10
|
-
2022-06-08T11:23:00+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
11
|
-
2022-06-08T11:24:32+09:00 error: Cannot destructure property 'relationColumn' of 'filtersMap[name]' as it is undefined.
|
|
12
|
-
2022-06-08T11:25:40+09:00 info: File Storage is Ready.
|
|
13
|
-
2022-06-08T11:25:46+09:00 info: Database connection established
|
|
14
|
-
2022-06-08T11:25:47+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
15
|
-
2022-06-08T11:25:47+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
16
|
-
2022-06-08T11:27:03+09:00 info: File Storage is Ready.
|
|
17
|
-
2022-06-08T11:27:09+09:00 info: Database connection established
|
|
18
|
-
2022-06-08T11:27:10+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
19
|
-
2022-06-08T11:27:10+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
20
|
-
2022-06-08T11:29:14+09:00 error: SQLITE_ERROR: no such table: supervisoryRole
|
|
21
|
-
2022-06-08T11:35:49+09:00 error: SQLITE_ERROR: no such table: supervisoryRole
|
|
22
|
-
2022-06-08T11:37:53+09:00 info: File Storage is Ready.
|
|
23
|
-
2022-06-08T11:37:59+09:00 info: Database connection established
|
|
24
|
-
2022-06-08T11:38:01+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
25
|
-
2022-06-08T11:38:01+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
26
|
-
2022-06-08T11:39:06+09:00 error: SQLITE_ERROR: no such table: supervisoryRole
|
|
27
|
-
2022-06-08T11:39:39+09:00 error: SQLITE_ERROR: no such table: supervisoryRole
|
|
28
|
-
2022-06-08T11:54:56+09:00 error: SQLITE_ERROR: no such table: supervisoryRole
|
|
29
|
-
2022-06-08T11:56:47+09:00 info: File Storage is Ready.
|
|
30
|
-
2022-06-08T11:56:53+09:00 info: Database connection established
|
|
31
|
-
2022-06-08T11:56:55+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
32
|
-
2022-06-08T11:56:55+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
33
|
-
2022-06-08T11:58:21+09:00 error: SQLITE_ERROR: no such column: Role.name.name
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
2022-06-08T12:00:08+09:00 error: Cannot read property 'name' of undefined
|
|
2
|
-
2022-06-08T12:04:07+09:00 info: File Storage is Ready.
|
|
3
|
-
2022-06-08T12:04:13+09:00 info: Database connection established
|
|
4
|
-
2022-06-08T12:04:15+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
5
|
-
2022-06-08T12:04:15+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
6
|
-
2022-06-08T12:12:19+09:00 info: File Storage is Ready.
|
|
7
|
-
2022-06-08T12:12:26+09:00 info: Database connection established
|
|
8
|
-
2022-06-08T12:12:27+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
9
|
-
2022-06-08T12:12:27+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
10
|
-
2022-06-08T12:12:51+09:00 error: SQLITE_ERROR: no such table: supervisoryRole
|
|
11
|
-
2022-06-08T12:13:25+09:00 error: SQLITE_ERROR: no such table: supervisoryRole
|
|
12
|
-
2022-06-08T12:18:22+09:00 error: SQLITE_ERROR: no such table: supervisoryRole
|
|
13
|
-
2022-06-08T12:19:47+09:00 info: File Storage is Ready.
|
|
14
|
-
2022-06-08T12:19:53+09:00 info: Database connection established
|
|
15
|
-
2022-06-08T12:19:55+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
16
|
-
2022-06-08T12:19:55+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
17
|
-
2022-06-08T12:20:18+09:00 error: SQLITE_ERROR: no such table: supervisoryRole
|
|
18
|
-
2022-06-08T12:21:00+09:00 error: SQLITE_ERROR: no such table: supervisoryRole
|
|
19
|
-
2022-06-08T12:29:13+09:00 info: File Storage is Ready.
|
|
20
|
-
2022-06-08T12:29:20+09:00 info: Database connection established
|
|
21
|
-
2022-06-08T12:29:24+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
22
|
-
2022-06-08T12:29:24+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
23
|
-
2022-06-08T12:29:34+09:00 error: SQLITE_ERROR: no such column: supervisory_role_id.name
|
|
24
|
-
2022-06-08T12:51:43+09:00 info: File Storage is Ready.
|
|
25
|
-
2022-06-08T12:51:50+09:00 info: Database connection established
|
|
26
|
-
2022-06-08T12:51:51+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
27
|
-
2022-06-08T12:51:51+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
2022-06-08T13:02:11+09:00 info: File Storage is Ready.
|
|
2
|
-
2022-06-08T13:02:18+09:00 info: Database connection established
|
|
3
|
-
2022-06-08T13:02:19+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
-
2022-06-08T13:02:19+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
-
2022-06-08T13:02:39+09:00 error: SQLITE_ERROR: ambiguous column name: name
|
|
6
|
-
2022-06-08T13:02:56+09:00 error: SQLITE_ERROR: ambiguous column name: name
|
|
7
|
-
2022-06-08T13:07:37+09:00 info: File Storage is Ready.
|
|
8
|
-
2022-06-08T13:07:44+09:00 info: Database connection established
|
|
9
|
-
2022-06-08T13:07:47+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
10
|
-
2022-06-08T13:07:47+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
11
|
-
2022-06-08T13:18:06+09:00 info: File Storage is Ready.
|
|
12
|
-
2022-06-08T13:18:13+09:00 info: Database connection established
|
|
13
|
-
2022-06-08T13:18:14+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
14
|
-
2022-06-08T13:18:14+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
2022-06-08T15:29:56+09:00 info: File Storage is Ready.
|
|
2
|
-
2022-06-08T15:30:01+09:00 info: Database connection established
|
|
3
|
-
2022-06-08T15:30:02+09:00 error: listen EADDRINUSE: address already in use :::3000
|
|
4
|
-
2022-06-08T15:30:57+09:00 info: File Storage is Ready.
|
|
5
|
-
2022-06-08T15:31:02+09:00 info: Database connection established
|
|
6
|
-
2022-06-08T15:31:04+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
7
|
-
2022-06-08T15:31:04+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
8
|
-
2022-06-08T15:37:53+09:00 info: File Storage is Ready.
|
|
9
|
-
2022-06-08T15:38:01+09:00 info: Database connection established
|
|
10
|
-
2022-06-08T15:38:03+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
11
|
-
2022-06-08T15:38:03+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
12
|
-
2022-06-08T15:51:55+09:00 info: File Storage is Ready.
|
|
13
|
-
2022-06-08T15:52:01+09:00 info: Database connection established
|
|
14
|
-
2022-06-08T15:52:03+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
15
|
-
2022-06-08T15:52:03+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
16
|
-
2022-06-08T15:57:02+09:00 info: File Storage is Ready.
|
|
17
|
-
2022-06-08T15:57:09+09:00 info: Database connection established
|
|
18
|
-
2022-06-08T15:57:11+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
19
|
-
2022-06-08T15:57:11+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
2022-06-08T16:11:19+09:00 info: File Storage is Ready.
|
|
2
|
-
2022-06-08T16:11:26+09:00 info: Database connection established
|
|
3
|
-
2022-06-08T16:11:28+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
-
2022-06-08T16:11:28+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
2022-06-08T17:28:51+09:00 info: File Storage is Ready.
|
|
2
|
-
2022-06-08T17:28:58+09:00 info: Database connection established
|
|
3
|
-
2022-06-08T17:28:59+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
-
2022-06-08T17:28:59+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
-
2022-06-08T17:29:45+09:00 error: stream is not readable
|
|
6
|
-
2022-06-08T17:47:19+09:00 info: File Storage is Ready.
|
|
7
|
-
2022-06-08T17:47:26+09:00 info: Database connection established
|
|
8
|
-
2022-06-08T17:47:27+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
9
|
-
2022-06-08T17:47:27+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
2022-06-08T18:24:53+09:00 info: File Storage is Ready.
|
|
2
|
-
2022-06-08T18:25:00+09:00 info: Database connection established
|
|
3
|
-
2022-06-08T18:25:02+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
-
2022-06-08T18:25:02+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
-
2022-06-08T18:26:21+09:00 error: SQLITE_ERROR: no such table: supervisoryRole
|
|
6
|
-
2022-06-08T18:27:38+09:00 info: File Storage is Ready.
|
|
7
|
-
2022-06-08T18:27:45+09:00 info: Database connection established
|
|
8
|
-
2022-06-08T18:27:46+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
9
|
-
2022-06-08T18:27:46+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
10
|
-
2022-06-08T18:27:52+09:00 error: "dataset" alias was not found. Maybe you forgot to join it?
|
|
11
|
-
2022-06-08T18:30:28+09:00 error: "dataset" alias was not found. Maybe you forgot to join it?
|
|
12
|
-
2022-06-08T18:32:42+09:00 info: File Storage is Ready.
|
|
13
|
-
2022-06-08T18:32:49+09:00 info: Database connection established
|
|
14
|
-
2022-06-08T18:32:51+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
15
|
-
2022-06-08T18:32:51+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
16
|
-
2022-06-08T18:32:59+09:00 error: "undefined" alias was not found. Maybe you forgot to join it?
|
|
17
|
-
2022-06-08T18:36:20+09:00 info: File Storage is Ready.
|
|
18
|
-
2022-06-08T18:36:26+09:00 info: Database connection established
|
|
19
|
-
2022-06-08T18:36:28+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
20
|
-
2022-06-08T18:36:28+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
21
|
-
2022-06-08T18:36:33+09:00 error: "undefined" alias was not found. Maybe you forgot to join it?
|
|
22
|
-
2022-06-08T18:36:35+09:00 error: "undefined" alias was not found. Maybe you forgot to join it?
|
|
23
|
-
2022-06-08T18:39:46+09:00 info: File Storage is Ready.
|
|
24
|
-
2022-06-08T18:39:52+09:00 info: Database connection established
|
|
25
|
-
2022-06-08T18:39:53+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
26
|
-
2022-06-08T18:39:53+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
27
|
-
2022-06-08T18:40:52+09:00 error: SQLITE_ERROR: ambiguous column name: supervisoryRole.id
|
|
28
|
-
2022-06-08T18:47:04+09:00 info: File Storage is Ready.
|
|
29
|
-
2022-06-08T18:47:10+09:00 info: Database connection established
|
|
30
|
-
2022-06-08T18:47:12+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
31
|
-
2022-06-08T18:47:12+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
32
|
-
2022-06-08T18:52:28+09:00 info: File Storage is Ready.
|
|
33
|
-
2022-06-08T18:52:35+09:00 info: Database connection established
|
|
34
|
-
2022-06-08T18:52:37+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
35
|
-
2022-06-08T18:52:37+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
2022-06-09T00:44:25+09:00 info: File Storage is Ready.
|
|
2
|
-
2022-06-09T00:44:31+09:00 info: Database connection established
|
|
3
|
-
2022-06-09T00:44:33+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
-
2022-06-09T00:44:33+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|