@things-factory/reference-app 5.0.0-alpha.4 → 5.0.0-alpha.40
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/_index.html +28 -0
- package/client/bootstrap.js +25 -14
- package/client/menu.js +21 -3
- package/client/pages/grist-colorizing.js +2 -3
- package/client/pages/grist-page.js +2 -2
- package/client/pages/menu-page.js +1 -1
- package/client/pages/report-page.js +2 -2
- package/config/config.development.js +3 -0
- package/db.sqlite +0 -0
- package/dist-server/index.js +1 -1
- package/dist-server/index.js.map +1 -1
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +3 -13
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +20 -15
- package/logs/application-2022-04-21-00.log +16 -0
- package/logs/{connections-2022-03-01-10.log → connections-2022-04-12-23.log} +0 -0
- package/logs/{connections-2022-03-03-23.log → connections-2022-04-13-00.log} +0 -0
- package/logs/{connections-2022-03-06-13.log → connections-2022-04-13-22.log} +0 -0
- package/logs/{connections-2022-03-09-21.log → connections-2022-04-13-23.log} +0 -0
- package/logs/{connections-2022-03-10-22.log → connections-2022-04-14-00.log} +0 -0
- package/logs/connections-2022-04-21-00.log +0 -0
- package/package.json +53 -51
- package/server/index.ts +2 -2
- package/logs/application-2022-03-09-21.log +0 -14
- package/logs/application-2022-03-09-22.log +0 -1
- package/logs/application-2022-03-10-22.log +0 -8
package/_index.html
CHANGED
|
@@ -73,6 +73,34 @@
|
|
|
73
73
|
})
|
|
74
74
|
}
|
|
75
75
|
</script>
|
|
76
|
+
<script type="text/javascript">
|
|
77
|
+
!(function (a, b, c, d, e, f, g, h) {
|
|
78
|
+
;(a.RaygunObject = e),
|
|
79
|
+
(a[e] =
|
|
80
|
+
a[e] ||
|
|
81
|
+
function () {
|
|
82
|
+
;(a[e].o = a[e].o || []).push(arguments)
|
|
83
|
+
}),
|
|
84
|
+
(f = b.createElement(c)),
|
|
85
|
+
(g = b.getElementsByTagName(c)[0]),
|
|
86
|
+
(f.async = 1),
|
|
87
|
+
(f.src = d),
|
|
88
|
+
g.parentNode.insertBefore(f, g),
|
|
89
|
+
(h = a.onerror),
|
|
90
|
+
(a.onerror = function (b, c, d, f, g) {
|
|
91
|
+
h && h(b, c, d, f, g),
|
|
92
|
+
g || (g = new Error(b)),
|
|
93
|
+
(a[e].q = a[e].q || []),
|
|
94
|
+
a[e].q.push({
|
|
95
|
+
e: g
|
|
96
|
+
})
|
|
97
|
+
})
|
|
98
|
+
})(window, document, 'script', '//cdn.raygun.io/raygun4js/raygun.min.js', 'rg4js')
|
|
99
|
+
</script>
|
|
100
|
+
<script type="text/javascript">
|
|
101
|
+
rg4js('apiKey', 'VvPzjH0zKdOM0hynpycw')
|
|
102
|
+
rg4js('enableCrashReporting', true)
|
|
103
|
+
</script>
|
|
76
104
|
</head>
|
|
77
105
|
|
|
78
106
|
<body>
|
package/client/bootstrap.js
CHANGED
|
@@ -3,23 +3,23 @@ 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
5
|
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
import { registerDefaultGroups } from '@operato/board/register-default-groups.js'
|
|
6
|
+
import { TOOL_POSITION, VIEWPART_POSITION, appendViewpart, toggleOverlay } from '@things-factory/layout-base'
|
|
9
7
|
import { getEditor, registerEditor, registerRenderer } from '@operato/data-grist'
|
|
10
|
-
import {
|
|
11
|
-
import { auth } from '@things-factory/auth-base'
|
|
12
|
-
import { setAuthManagementMenus } from '@things-factory/auth-ui'
|
|
13
|
-
import { appendViewpart, toggleOverlay, TOOL_POSITION, VIEWPART_POSITION } from '@things-factory/layout-base'
|
|
8
|
+
import { navigate, store } from '@things-factory/shell'
|
|
14
9
|
import { setupMenuPart, updateMenuTemplate } from '@things-factory/lite-menu'
|
|
10
|
+
|
|
15
11
|
import { ADD_MORENDA } from '@things-factory/more-base'
|
|
16
12
|
import { ADD_SETTING } from '@things-factory/setting-base'
|
|
17
|
-
import {
|
|
18
|
-
|
|
19
|
-
import { IdEditor } from './editors/id-editor'
|
|
20
|
-
import { getMenuTemplate } from './menu'
|
|
13
|
+
import { APPEND_APP_TOOL } from '@things-factory/apptool-base'
|
|
21
14
|
import { BarcodeRenderer } from './renderers/barcode-renderer'
|
|
22
15
|
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
23
|
|
|
24
24
|
console.log(
|
|
25
25
|
`%c
|
|
@@ -33,16 +33,16 @@ console.log(
|
|
|
33
33
|
)
|
|
34
34
|
|
|
35
35
|
export default function bootstrap() {
|
|
36
|
-
|
|
36
|
+
registerRenderer('id', IdRenderer)
|
|
37
37
|
registerRenderer('barcode', BarcodeRenderer)
|
|
38
|
-
|
|
38
|
+
registerEditor('id', OxGristEditorResourceId)
|
|
39
39
|
registerEditor('barcode', getEditor('string'))
|
|
40
40
|
|
|
41
41
|
/* set board-modeller group and default templates */
|
|
42
42
|
registerDefaultGroups()
|
|
43
43
|
|
|
44
44
|
setupMenuPart({
|
|
45
|
-
hovering:
|
|
45
|
+
hovering: isMobileDevice(),
|
|
46
46
|
position: VIEWPART_POSITION.NAVBAR,
|
|
47
47
|
portraitSlotTemplate: html` <domain-switch slot="tail"></domain-switch> `
|
|
48
48
|
})
|
|
@@ -74,6 +74,17 @@ export default function bootstrap() {
|
|
|
74
74
|
setAuthManagementMenus(credential)
|
|
75
75
|
|
|
76
76
|
if (credential.owner) {
|
|
77
|
+
store.dispatch({
|
|
78
|
+
type: ADD_MORENDA,
|
|
79
|
+
morenda: {
|
|
80
|
+
icon: html` <mwc-icon>pending_actions</mwc-icon> `,
|
|
81
|
+
name: html` <i18n-msg msgid="title.work-shift"></i18n-msg> `,
|
|
82
|
+
action: () => {
|
|
83
|
+
navigate('work-shift')
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
})
|
|
87
|
+
|
|
77
88
|
store.dispatch({
|
|
78
89
|
type: ADD_MORENDA,
|
|
79
90
|
morenda: {
|
package/client/menu.js
CHANGED
|
@@ -141,16 +141,34 @@ export function getMenuTemplate() {
|
|
|
141
141
|
description: '데이타 수집을 위한 개념과 기능들을 소개합니다.',
|
|
142
142
|
menus: [
|
|
143
143
|
{
|
|
144
|
+
icon: 'display_settings',
|
|
144
145
|
name: 'Data Set Master',
|
|
145
|
-
path: 'data-set'
|
|
146
|
+
path: 'data-set-list'
|
|
146
147
|
},
|
|
147
148
|
{
|
|
149
|
+
icon: 'sensors',
|
|
148
150
|
name: 'Data Collection Sensors',
|
|
149
|
-
path: 'data-sensor'
|
|
151
|
+
path: 'data-sensor-list'
|
|
150
152
|
},
|
|
151
153
|
{
|
|
154
|
+
icon: 'checklist',
|
|
152
155
|
name: 'Data Samples',
|
|
153
|
-
path: 'data-sample'
|
|
156
|
+
path: 'data-sample-list'
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
icon: 'playlist_remove',
|
|
160
|
+
name: 'Data OOC',
|
|
161
|
+
path: 'data-ooc-list'
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
icon: 'post_add',
|
|
165
|
+
name: 'Data Entry',
|
|
166
|
+
path: 'data-entry-list'
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
icon: 'newspaper',
|
|
170
|
+
name: 'Data Report',
|
|
171
|
+
path: 'data-report-list'
|
|
154
172
|
}
|
|
155
173
|
]
|
|
156
174
|
}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { css, html } from 'lit'
|
|
2
|
-
|
|
3
2
|
import { getEditor, getRenderer } from '@operato/data-grist'
|
|
4
3
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
4
|
+
|
|
5
5
|
import { PageView } from '@things-factory/shell'
|
|
6
6
|
import { isMobileDevice } from '@things-factory/utils'
|
|
7
|
-
|
|
8
7
|
import { referencePageStyles } from './reference-page-styles'
|
|
9
8
|
|
|
10
9
|
class GristColorizing extends localize(i18next)(PageView) {
|
|
@@ -415,7 +414,7 @@ class GristColorizing extends localize(i18next)(PageView) {
|
|
|
415
414
|
sorters: [
|
|
416
415
|
{
|
|
417
416
|
name: 'name',
|
|
418
|
-
|
|
417
|
+
desc: true
|
|
419
418
|
},
|
|
420
419
|
{
|
|
421
420
|
name: 'email'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { css, html } from 'lit'
|
|
2
|
-
|
|
3
2
|
import { getEditor, getRenderer } from '@operato/data-grist'
|
|
4
3
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
4
|
+
|
|
5
5
|
import { PageView } from '@things-factory/shell'
|
|
6
6
|
import { isMobileDevice } from '@things-factory/utils'
|
|
7
7
|
|
|
@@ -321,7 +321,7 @@ class GristPage extends localize(i18next)(PageView) {
|
|
|
321
321
|
sorters: [
|
|
322
322
|
{
|
|
323
323
|
name: 'name',
|
|
324
|
-
|
|
324
|
+
desc: true
|
|
325
325
|
},
|
|
326
326
|
{
|
|
327
327
|
name: 'email'
|
|
@@ -43,7 +43,7 @@ class MenuPage extends connect(store)(PageView) {
|
|
|
43
43
|
</p>
|
|
44
44
|
<section @change=${e => this.setupMenu(e)}>
|
|
45
45
|
<mwc-formfield label="Hovering">
|
|
46
|
-
<mwc-checkbox id="hovering"></mwc-checkbox>
|
|
46
|
+
<mwc-checkbox id="hovering" checked></mwc-checkbox>
|
|
47
47
|
</mwc-formfield>
|
|
48
48
|
|
|
49
49
|
<mwc-formfield label="Landscape">
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import '@operato/data-grist'
|
|
2
2
|
|
|
3
3
|
import { css, html } from 'lit'
|
|
4
|
-
|
|
5
4
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
5
|
+
|
|
6
6
|
import { PageView } from '@things-factory/shell'
|
|
7
7
|
|
|
8
8
|
class ReportPage extends localize(i18next)(PageView) {
|
|
@@ -215,7 +215,7 @@ class ReportPage extends localize(i18next)(PageView) {
|
|
|
215
215
|
sorters: [
|
|
216
216
|
{
|
|
217
217
|
name: 'company',
|
|
218
|
-
|
|
218
|
+
desc: true
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
name: 'email'
|
package/db.sqlite
CHANGED
|
Binary file
|
package/dist-server/index.js
CHANGED
|
@@ -14,8 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
require("./routes");
|
|
17
18
|
__exportStar(require("./service"), exports);
|
|
18
19
|
__exportStar(require("./migrations"), exports);
|
|
19
20
|
__exportStar(require("./middlewares"), exports);
|
|
20
|
-
require("./routes");
|
|
21
21
|
//# sourceMappingURL=index.js.map
|
package/dist-server/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4CAAyB;AACzB,+CAA4B;AAC5B,gDAA6B
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oBAAiB;AAEjB,4CAAyB;AACzB,+CAA4B;AAC5B,gDAA6B"}
|
|
@@ -6,19 +6,9 @@
|
|
|
6
6
|
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/application-2022-
|
|
11
|
-
"hash": "
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"date": 1646830846690,
|
|
15
|
-
"name": "logs/application-2022-03-09-22.log",
|
|
16
|
-
"hash": "b144656e849b63222dd85191cf2161e6"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"date": 1646917934076,
|
|
20
|
-
"name": "logs/application-2022-03-10-22.log",
|
|
21
|
-
"hash": "bb6528454e8674c531f02bba9bf015fb"
|
|
9
|
+
"date": 1650467234911,
|
|
10
|
+
"name": "logs/application-2022-04-21-00.log",
|
|
11
|
+
"hash": "d35bdeeb33f4f5cc48dd83701f9aa3d8"
|
|
22
12
|
}
|
|
23
13
|
],
|
|
24
14
|
"hashType": "md5"
|
|
@@ -6,29 +6,34 @@
|
|
|
6
6
|
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/connections-2022-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1649774400662,
|
|
10
|
+
"name": "logs/connections-2022-04-12-23.log",
|
|
11
|
+
"hash": "544ed8263e670ce8e4096de2dd36de4f"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"date":
|
|
15
|
-
"name": "logs/connections-2022-
|
|
16
|
-
"hash": "
|
|
14
|
+
"date": 1649776004672,
|
|
15
|
+
"name": "logs/connections-2022-04-13-00.log",
|
|
16
|
+
"hash": "f20ce325319986bc3343b4a9debf9e57"
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
|
-
"date":
|
|
20
|
-
"name": "logs/connections-2022-
|
|
21
|
-
"hash": "
|
|
19
|
+
"date": 1649857868380,
|
|
20
|
+
"name": "logs/connections-2022-04-13-22.log",
|
|
21
|
+
"hash": "ba8df45458afcda0660c56be754690df"
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
|
-
"date":
|
|
25
|
-
"name": "logs/connections-2022-
|
|
26
|
-
"hash": "
|
|
24
|
+
"date": 1649859704005,
|
|
25
|
+
"name": "logs/connections-2022-04-13-23.log",
|
|
26
|
+
"hash": "adabb096aaf0f0463fa6604bfe588ddd"
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
|
-
"date":
|
|
30
|
-
"name": "logs/connections-2022-
|
|
31
|
-
"hash": "
|
|
29
|
+
"date": 1649862212022,
|
|
30
|
+
"name": "logs/connections-2022-04-14-00.log",
|
|
31
|
+
"hash": "8ba833339a03c414d6cb1ff5312d4fd1"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"date": 1650467237289,
|
|
35
|
+
"name": "logs/connections-2022-04-21-00.log",
|
|
36
|
+
"hash": "d828e4921d646e326bcb6d2beb15b4d3"
|
|
32
37
|
}
|
|
33
38
|
],
|
|
34
39
|
"hashType": "md5"
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
2022-04-20T15:07:20.748Z info: Database connection established
|
|
2
|
+
2022-04-20T15:07:22.121Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
3
|
+
2022-04-20T15:07:22.122Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
4
|
+
2022-04-20T15:13:20.071Z info: Database connection established
|
|
5
|
+
2022-04-20T15:13:22.328Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
6
|
+
2022-04-20T15:13:22.328Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
7
|
+
2022-04-20T15:19:26.817Z info: Database connection established
|
|
8
|
+
2022-04-20T15:19:29.329Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
9
|
+
2022-04-20T15:19:29.330Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
10
|
+
2022-04-20T15:21:40.873Z info: Database connection established
|
|
11
|
+
2022-04-20T15:21:43.477Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
12
|
+
2022-04-20T15:21:43.479Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
13
|
+
2022-04-20T15:25:42.838Z info: Database connection established
|
|
14
|
+
2022-04-20T15:25:44.470Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
15
|
+
2022-04-20T15:25:44.471Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
16
|
+
2022-04-20T15:27:05.866Z error: (0 , shell_1.createQueryBuilder) is not a function
|
|
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-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.40",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -37,58 +37,60 @@
|
|
|
37
37
|
"docker:run": "docker run -it -p 4000:3000 hatiolab/reference-app:latest"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@hatiolab/things-scene": "^
|
|
40
|
+
"@hatiolab/things-scene": "^3.0.5",
|
|
41
41
|
"@material/mwc-checkbox": "^0.25.3",
|
|
42
|
-
"@operato/data-grist": "1.0.0-
|
|
43
|
-
"@operato/ghost-print": "1.0.0-
|
|
44
|
-
"@operato/graphql": "1.0.0-
|
|
45
|
-
"@operato/help": "1.0.0-
|
|
46
|
-
"@operato/i18n": "1.0.0-
|
|
47
|
-
"@operato/input": "1.0.0-
|
|
48
|
-
"@operato/layout": "1.0.0-
|
|
49
|
-
"@operato/ocr": "1.0.0-
|
|
50
|
-
"@operato/popup": "1.0.0-
|
|
51
|
-
"@operato/pull-to-refresh": "1.0.0-
|
|
52
|
-
"@operato/scene-chartjs": "^0.
|
|
53
|
-
"@operato/scene-clock": "^0.
|
|
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/
|
|
63
|
-
"@operato/
|
|
64
|
-
"@
|
|
65
|
-
"@things-factory/
|
|
66
|
-
"@things-factory/
|
|
67
|
-
"@things-factory/
|
|
68
|
-
"@things-factory/board-
|
|
69
|
-
"@things-factory/
|
|
70
|
-
"@things-factory/
|
|
71
|
-
"@things-factory/
|
|
72
|
-
"@things-factory/
|
|
73
|
-
"@things-factory/
|
|
74
|
-
"@things-factory/export-ui
|
|
75
|
-
"@things-factory/
|
|
76
|
-
"@things-factory/
|
|
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/setting-
|
|
87
|
-
"@things-factory/
|
|
88
|
-
"@things-factory/
|
|
42
|
+
"@operato/data-grist": "1.0.0-beta.7",
|
|
43
|
+
"@operato/ghost-print": "1.0.0-beta.7",
|
|
44
|
+
"@operato/graphql": "1.0.0-beta.7",
|
|
45
|
+
"@operato/help": "1.0.0-beta.7",
|
|
46
|
+
"@operato/i18n": "1.0.0-beta.7",
|
|
47
|
+
"@operato/input": "1.0.0-beta.7",
|
|
48
|
+
"@operato/layout": "1.0.0-beta.7",
|
|
49
|
+
"@operato/ocr": "1.0.0-beta.7",
|
|
50
|
+
"@operato/popup": "1.0.0-beta.7",
|
|
51
|
+
"@operato/pull-to-refresh": "1.0.0-beta.7",
|
|
52
|
+
"@operato/scene-chartjs": "^1.0.0-alpha.13",
|
|
53
|
+
"@operato/scene-clock": "^1.0.0-alpha.13",
|
|
54
|
+
"@operato/scene-form": "^1.0.0-alpha.13",
|
|
55
|
+
"@operato/scene-gauge": "^1.0.0-alpha.13",
|
|
56
|
+
"@operato/scene-half-roundrect": "^1.0.0-alpha.13",
|
|
57
|
+
"@operato/scene-indoor-map": "^1.0.0-alpha.13",
|
|
58
|
+
"@operato/scene-news-ticker": "^1.0.0-alpha.13",
|
|
59
|
+
"@operato/scene-progressbar": "^1.0.0-alpha.13",
|
|
60
|
+
"@operato/scene-random": "^1.0.0-alpha.13",
|
|
61
|
+
"@operato/scene-switch": "^1.0.0-alpha.13",
|
|
62
|
+
"@operato/scene-tab": "^1.0.0-alpha.13",
|
|
63
|
+
"@operato/shell": "1.0.0-beta.7",
|
|
64
|
+
"@operato/utils": "1.0.0-beta.7",
|
|
65
|
+
"@things-factory/api": "^5.0.0-alpha.40",
|
|
66
|
+
"@things-factory/apptool-ui": "^5.0.0-alpha.40",
|
|
67
|
+
"@things-factory/auth-ui": "^5.0.0-alpha.40",
|
|
68
|
+
"@things-factory/board-service": "^5.0.0-alpha.40",
|
|
69
|
+
"@things-factory/board-ui": "^5.0.0-alpha.40",
|
|
70
|
+
"@things-factory/ccp": "^5.0.0-alpha.40",
|
|
71
|
+
"@things-factory/context-ui": "^5.0.0-alpha.40",
|
|
72
|
+
"@things-factory/dashboard": "^5.0.0-alpha.40",
|
|
73
|
+
"@things-factory/dataset": "^5.0.0-alpha.40",
|
|
74
|
+
"@things-factory/export-ui": "^5.0.0-alpha.40",
|
|
75
|
+
"@things-factory/export-ui-excel": "^5.0.0-alpha.40",
|
|
76
|
+
"@things-factory/grist-ui": "^5.0.0-alpha.40",
|
|
77
|
+
"@things-factory/help": "^5.0.0-alpha.40",
|
|
78
|
+
"@things-factory/integration-ui": "^5.0.0-alpha.40",
|
|
79
|
+
"@things-factory/lite-menu": "^5.0.0-alpha.40",
|
|
80
|
+
"@things-factory/more-ui": "^5.0.0-alpha.40",
|
|
81
|
+
"@things-factory/notification": "^5.0.0-alpha.40",
|
|
82
|
+
"@things-factory/oauth2-client": "^5.0.0-alpha.40",
|
|
83
|
+
"@things-factory/print-ui": "^5.0.0-alpha.40",
|
|
84
|
+
"@things-factory/qc": "^5.0.0-alpha.40",
|
|
85
|
+
"@things-factory/resource-ui": "^5.0.0-alpha.40",
|
|
86
|
+
"@things-factory/setting-base": "^5.0.0-alpha.40",
|
|
87
|
+
"@things-factory/setting-ui": "^5.0.0-alpha.40",
|
|
88
|
+
"@things-factory/shell": "^5.0.0-alpha.40",
|
|
89
|
+
"@things-factory/system-ui": "^5.0.0-alpha.40",
|
|
90
|
+
"@things-factory/work-shift": "^5.0.0-alpha.40"
|
|
89
91
|
},
|
|
90
92
|
"devDependencies": {
|
|
91
|
-
"@things-factory/builder": "^5.0.0-alpha.
|
|
93
|
+
"@things-factory/builder": "^5.0.0-alpha.40"
|
|
92
94
|
},
|
|
93
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "c64462e85c9b744250f5649d28c0ec4bd56a1b38"
|
|
94
96
|
}
|
package/server/index.ts
CHANGED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
2022-03-09T12:17:47.362Z info: File Storage is Ready.
|
|
2
|
-
2022-03-09T12:17:52.509Z info: Database connection established
|
|
3
|
-
2022-03-09T12:17:53.778Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
-
2022-03-09T12:17:53.778Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
-
2022-03-09T12:19:25.191Z error: Cannot query field "myFavorites" on type "Query".
|
|
6
|
-
2022-03-09T12:19:38.788Z error: Cannot query field "myFavorites" on type "Query".
|
|
7
|
-
2022-03-09T12:51:32.004Z info: File Storage is Ready.
|
|
8
|
-
2022-03-09T12:51:37.035Z info: Database connection established
|
|
9
|
-
2022-03-09T12:51:38.514Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
10
|
-
2022-03-09T12:51:38.514Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
11
|
-
2022-03-09T12:56:50.103Z info: File Storage is Ready.
|
|
12
|
-
2022-03-09T12:56:54.284Z info: Database connection established
|
|
13
|
-
2022-03-09T12:56:55.428Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
14
|
-
2022-03-09T12:56:55.428Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2022-03-09T13:00:46.673Z error: Cannot read property 'name' of undefined
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
2022-03-10T13:12:16.558Z info: File Storage is Ready.
|
|
2
|
-
2022-03-10T13:12:21.260Z info: Database connection established
|
|
3
|
-
2022-03-10T13:12:23.440Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
-
2022-03-10T13:12:23.442Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
5
|
-
2022-03-10T13:25:14.535Z info: File Storage is Ready.
|
|
6
|
-
2022-03-10T13:25:19.208Z info: Database connection established
|
|
7
|
-
2022-03-10T13:25:20.380Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
8
|
-
2022-03-10T13:25:20.380Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|