@operato/scene-manufacturing 1.3.19 → 1.3.21
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/CHANGELOG.md +18 -0
- package/db.sqlite +0 -0
- package/dist/tact-timer-mask.d.ts +1 -0
- package/dist/tact-timer-mask.js +35 -0
- package/dist/tact-timer-mask.js.map +1 -0
- package/dist/tact-timer.d.ts +2 -2
- package/dist/tact-timer.js +39 -26
- package/dist/tact-timer.js.map +1 -1
- package/helps/scene/component/manufacturing/tact-timer.ja.md +39 -39
- package/helps/scene/component/manufacturing/tact-timer.ko.md +8 -8
- package/helps/scene/component/manufacturing/tact-timer.md +38 -38
- package/helps/scene/component/manufacturing/tact-timer.ms.md +45 -42
- package/helps/scene/component/manufacturing/tact-timer.zh.md +45 -45
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +15 -15
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +30 -5
- package/logs/{application-2024-07-06-11.log → application-2024-07-11-12.log} +8 -8
- package/logs/application-2024-07-11-13.log +23 -0
- package/logs/{application-2024-07-06-03.log → application-2024-07-12-16.log} +9 -9
- package/logs/application-2024-07-12-17.log +210 -0
- package/logs/application-2024-07-12-19.log +46 -0
- package/logs/connections-2024-07-06-12.log +50 -0
- package/logs/connections-2024-07-11-12.log +47 -0
- package/logs/connections-2024-07-11-13.log +47 -0
- package/logs/connections-2024-07-12-16.log +50 -0
- package/logs/connections-2024-07-12-17.log +100 -0
- package/logs/connections-2024-07-12-19.log +94 -0
- package/package.json +2 -2
- package/{icons/tact-timer-mask.svg → src/tact-timer-mask.ts} +4 -3
- package/src/tact-timer.ts +51 -36
- package/translations/en.json +13 -11
- package/translations/ja.json +11 -9
- package/translations/ko.json +7 -5
- package/translations/ms.json +11 -9
- package/translations/zh.json +9 -7
- package/tsconfig.tsbuildinfo +1 -1
- package/logs/application-2024-07-05-08.log +0 -105
- package/logs/application-2024-07-05-12.log +0 -105
- package/logs/application-2024-07-06-01.log +0 -105
- package/logs/connections-2024-06-27-22.log +0 -47
|
@@ -1,66 +1,69 @@
|
|
|
1
|
-
|
|
1
|
+
# Tact Timer
|
|
2
2
|
|
|
3
|
-
"Tact Timer" adalah alat pengurusan masa yang digunakan dalam barisan pengeluaran atau proses
|
|
3
|
+
"Tact Timer" adalah alat pengurusan masa yang digunakan dalam barisan pengeluaran atau proses untuk menetapkan dan menguruskan masa yang diperuntukkan untuk tugas atau aktiviti tertentu. Alat ini berdasarkan masa mula dan masa tamat untuk mengira dan memantau masa yang telah berlalu secara masa nyata, serta memaparkan bar kemajuan dan teks kiraan masa untuk memberikan gambaran visual tentang kemajuan semasa kepada pengguna. Ini membantu dalam menguruskan proses pengeluaran dengan cekap dan mengoptimumkan hasil pengeluaran.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## properties
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
7
|
+
- masa mula(startTime)
|
|
8
|
+
- Tetapkan masa mula tugas.
|
|
9
9
|
- Format: 'YYYYMMDDhhmmss'
|
|
10
|
-
-
|
|
11
|
-
-
|
|
10
|
+
- masa tamat(endTime)
|
|
11
|
+
- Tetapkan masa tamat tugas.
|
|
12
12
|
- Format: 'YYYYMMDDhhmmss'
|
|
13
|
-
-
|
|
13
|
+
- format kiraan masa(format)
|
|
14
14
|
- Format: 'hh:mm:ss'
|
|
15
|
-
- Format paparan hasil kiraan
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
- Warna kemajuan
|
|
22
|
-
-
|
|
23
|
-
- Warna kemajuan
|
|
24
|
-
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
-
|
|
29
|
-
|
|
30
|
-
- Warna
|
|
15
|
+
- Format paparan hasil kiraan masa
|
|
16
|
+
- arah kemajuan(progressDirection)
|
|
17
|
+
- Tetapkan arah kemajuan bar kemajuan.
|
|
18
|
+
- 'increase': Kemajuan meningkat
|
|
19
|
+
- 'decrease': Kemajuan menurun
|
|
20
|
+
- warna kemajuan sebelum tarikh akhir(beforeDueProgressColor)
|
|
21
|
+
- Warna kemajuan sebelum tarikh akhir
|
|
22
|
+
- warna kemajuan selepas tarikh akhir(overDueProgressColor)
|
|
23
|
+
- Warna kemajuan selepas tarikh akhir
|
|
24
|
+
- warna fon sebelum tarikh akhir(beforeDueFont
|
|
25
|
+
|
|
26
|
+
Color)
|
|
27
|
+
|
|
28
|
+
- Warna fon sebelum tarikh akhir
|
|
29
|
+
- warna fon selepas tarikh akhir(overDueFontColor)
|
|
30
|
+
- Warna fon selepas tarikh akhir
|
|
31
|
+
- ambang kemajuan(progressThreshold)
|
|
32
|
+
- Ambang amaran(%). Warna di bawah ambang digunakan jika kemajuan di bawah ambang
|
|
33
|
+
- warna di bawah ambang(underThresholdColor)
|
|
31
34
|
- Warna kemajuan di bawah ambang
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
- Saiz jejari
|
|
36
|
-
-
|
|
37
|
-
- Menunjukkan kemajuan
|
|
38
|
-
-
|
|
39
|
-
-
|
|
35
|
+
- mula automatik(autoStart)
|
|
36
|
+
- Memulakan kiraan masa secara automatik
|
|
37
|
+
- bulat(round)
|
|
38
|
+
- Saiz jejari bulat bagi keempat-empat sudut kawasan segi empat komponen
|
|
39
|
+
- tunjukkan warna kemajuan(showProgress)
|
|
40
|
+
- Menunjukkan tahap kemajuan dengan warna latar belakang
|
|
41
|
+
- tunjukkan pemasa(showTimer)
|
|
42
|
+
- Memaparkan masa yang tinggal atau masa yang telah berlalu dalam teks
|
|
40
43
|
|
|
41
|
-
|
|
44
|
+
## data
|
|
42
45
|
|
|
43
|
-
-
|
|
44
|
-
- Pemasa
|
|
46
|
+
- Masa yang tinggal dikemas kini setiap saat berdasarkan masa mula dan masa tamat yang ditetapkan.
|
|
47
|
+
- Pemasa mengira masa sehingga 0 berdasarkan masa tamat yang ditetapkan.
|
|
45
48
|
|
|
46
|
-
|
|
49
|
+
## value
|
|
47
50
|
|
|
48
|
-
|
|
51
|
+
Harta `value` boleh digunakan untuk menetapkan `startTime` dan `endTime` dalam pelbagai format, dan boleh menggunakan pelbagai aksara khas untuk memisahkan masa:
|
|
49
52
|
|
|
50
|
-
-
|
|
53
|
+
- Tetapkan sebagai array: `['YYYYMMDDhhmmss', 'YYYYMMDDhhmmss']`
|
|
51
54
|
|
|
52
55
|
```javascript
|
|
53
56
|
component.value = ['20240101000000', '20240101235959']
|
|
54
57
|
```
|
|
55
58
|
|
|
56
|
-
-
|
|
59
|
+
- Tetapkan sebagai objek:
|
|
57
60
|
|
|
58
61
|
```javascript
|
|
59
62
|
component.value = { startTime: '20240101000000', endTime: '20240101235959' }
|
|
60
63
|
```
|
|
61
64
|
|
|
62
|
-
-
|
|
63
|
-
-
|
|
65
|
+
- Tetapkan sebagai rentetan yang mengandungi aksara khas:
|
|
66
|
+
- Aksara khas yang boleh digunakan: `-`, `/`, `%`, `$`, `#`, `_`, `,`
|
|
64
67
|
```javascript
|
|
65
68
|
component.value = '20240101000000-20240101235959'
|
|
66
69
|
component.value = '20240101000000/20240101235959'
|
|
@@ -71,4 +74,4 @@ Property `value` boleh digunakan untuk menetapkan `startTime` dan `endTime` dala
|
|
|
71
74
|
component.value = '20240101000000,20240101235959'
|
|
72
75
|
```
|
|
73
76
|
|
|
74
|
-
Dalam semua kes, komponen akan mengurai `startTime` dan `endTime` yang
|
|
77
|
+
Dalam semua kes, komponen akan mengurai `startTime` dan `endTime` yang disediakan dan mengemas kini status mengikut keadaan.
|
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
|
|
1
|
+
# Tact Timer
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
"Tact Timer"是用于生产线或工艺中的时间管理工具,用于设置和管理分配给特定任务或活动的时间。该工具基于开始时间和结束时间实时计算和监控经过时间,并通过进度条和倒计时文本向用户直观显示当前进度。这有助于高效管理生产过程并优化产量。
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## properties
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
7
|
+
- 开始时间(startTime)
|
|
8
|
+
- 设置任务的开始时间。
|
|
9
|
+
- 格式: 'YYYYMMDDhhmmss'
|
|
10
|
+
- 结束时间(endTime)
|
|
11
|
+
- 设置任务的结束时间。
|
|
12
|
+
- 格式: 'YYYYMMDDhhmmss'
|
|
13
|
+
- 倒计时格式(format)
|
|
14
|
+
- 格式: 'hh:mm:ss'
|
|
15
|
+
- 倒计时结果显示格式
|
|
16
|
+
- 进度方向(progressDirection)
|
|
17
|
+
- 设置进度条的进度方向。
|
|
18
|
+
- 'increase': 递增方向
|
|
19
|
+
- 'decrease': 递减方向
|
|
20
|
+
- 到期前进度颜色(beforeDueProgressColor)
|
|
21
|
+
- 到期前的进度颜色
|
|
22
|
+
- 到期后进度颜色(overDueProgressColor)
|
|
23
|
+
- 到期后的进度颜色
|
|
24
|
+
- 到期前字体颜色(beforeDueFontColor)
|
|
25
|
+
- 到期前的字体颜色
|
|
26
|
+
- 到期后字体颜色(overDueFontColor)
|
|
27
|
+
- 到期后的字体颜色
|
|
28
|
+
- 进度阈值(progressThreshold)
|
|
29
|
+
- 警告阈值(%)。进度低于阈值时使用低于阈值颜色
|
|
30
|
+
- 低于阈值颜色(underThresholdColor)
|
|
31
|
+
- 低于阈值时的进度颜色
|
|
32
|
+
- 自动开始(autoStart)
|
|
33
33
|
- 自动开始倒计时
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
34
|
+
- 圆角(round)
|
|
35
|
+
- 组件矩形区域的四角的圆角半径大小
|
|
36
|
+
- 显示进度颜色(showProgress)
|
|
37
|
+
- 以背景颜色显示进度
|
|
38
|
+
- 显示计时器(showTimer)
|
|
39
|
+
- 以文本形式显示剩余时间或经过时间
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
## data
|
|
42
42
|
|
|
43
|
-
-
|
|
44
|
-
-
|
|
43
|
+
- 根据设置的开始时间和结束时间,每秒更新当前剩余时间。
|
|
44
|
+
- 计时器根据设定的结束时间倒计时至 0。
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
## value
|
|
47
47
|
|
|
48
|
-
`value
|
|
48
|
+
`value`属性可用于以多种格式设置`startTime`和`endTime`,并可使用多种特殊字符分隔时间:
|
|
49
49
|
|
|
50
|
-
-
|
|
50
|
+
- 设置为数组: `['YYYYMMDDhhmmss', 'YYYYMMDDhhmmss']`
|
|
51
51
|
|
|
52
52
|
```javascript
|
|
53
53
|
component.value = ['20240101000000', '20240101235959']
|
|
54
54
|
```
|
|
55
55
|
|
|
56
|
-
-
|
|
56
|
+
- 设置为对象:
|
|
57
57
|
|
|
58
58
|
```javascript
|
|
59
59
|
component.value = { startTime: '20240101000000', endTime: '20240101235959' }
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
-
|
|
63
|
-
-
|
|
62
|
+
- 设置为包含特殊字符的字符串:
|
|
63
|
+
- 可用特殊字符: `-`, `/`, `%`, `$`, `#`, `_`, `,`
|
|
64
64
|
```javascript
|
|
65
65
|
component.value = '20240101000000-20240101235959'
|
|
66
66
|
component.value = '20240101000000/20240101235959'
|
|
@@ -71,4 +71,4 @@
|
|
|
71
71
|
component.value = '20240101000000,20240101235959'
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
在所有情况下,组件将解析提供的`startTime`和`endTime`并相应更新状态。
|
|
@@ -6,29 +6,29 @@
|
|
|
6
6
|
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/application-2024-07-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1720670342063,
|
|
10
|
+
"name": "logs/application-2024-07-11-12.log",
|
|
11
|
+
"hash": "85677c40f2076ef65f5e6291a77db74beabb6e73aacc0ecf70907412bcc75a2b"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"date":
|
|
15
|
-
"name": "logs/application-2024-07-
|
|
16
|
-
"hash": "
|
|
14
|
+
"date": 1720672295153,
|
|
15
|
+
"name": "logs/application-2024-07-11-13.log",
|
|
16
|
+
"hash": "0cae176bd15f168546d80c132308f082e2c5775e3c36374db76976c46b882207"
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
|
-
"date":
|
|
20
|
-
"name": "logs/application-2024-07-
|
|
21
|
-
"hash": "
|
|
19
|
+
"date": 1720769526083,
|
|
20
|
+
"name": "logs/application-2024-07-12-16.log",
|
|
21
|
+
"hash": "5514cf65fc3bdf6b58db34630e0fdf3dea1552ac2541321543e4bf9cdce73883"
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
|
-
"date":
|
|
25
|
-
"name": "logs/application-2024-07-
|
|
26
|
-
"hash": "
|
|
24
|
+
"date": 1720772145704,
|
|
25
|
+
"name": "logs/application-2024-07-12-17.log",
|
|
26
|
+
"hash": "96f68e68595644e56a553db649172b81ef1f6ddd489b7e37e4432fb9887e147f"
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
|
-
"date":
|
|
30
|
-
"name": "logs/application-2024-07-
|
|
31
|
-
"hash": "
|
|
29
|
+
"date": 1720781272322,
|
|
30
|
+
"name": "logs/application-2024-07-12-19.log",
|
|
31
|
+
"hash": "d6809311bf4d1c5ec2dd6b01ed3188d97d1cd238e5796ad6b7dca9ed46bd4426"
|
|
32
32
|
}
|
|
33
33
|
],
|
|
34
34
|
"hashType": "sha256"
|
|
@@ -5,11 +5,6 @@
|
|
|
5
5
|
},
|
|
6
6
|
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
7
|
"files": [
|
|
8
|
-
{
|
|
9
|
-
"date": 1719494619722,
|
|
10
|
-
"name": "logs/connections-2024-06-27-22.log",
|
|
11
|
-
"hash": "0b1cd458f5e58bc3b2f4c433f81ce28cda6ee8d0c12218512de34cee13aa5f84"
|
|
12
|
-
},
|
|
13
8
|
{
|
|
14
9
|
"date": 1720137178564,
|
|
15
10
|
"name": "logs/connections-2024-07-05-08.log",
|
|
@@ -34,6 +29,36 @@
|
|
|
34
29
|
"date": 1720231836497,
|
|
35
30
|
"name": "logs/connections-2024-07-06-11.log",
|
|
36
31
|
"hash": "90547f443988ace04bdcd961cefa8e473792444776e628273dd29e6cd70092c7"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"date": 1720235760768,
|
|
35
|
+
"name": "logs/connections-2024-07-06-12.log",
|
|
36
|
+
"hash": "683660cbeda45a721e399b95a8e16ab6c88ca8ef13b53eed9cc526294cae0de7"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"date": 1720670343838,
|
|
40
|
+
"name": "logs/connections-2024-07-11-12.log",
|
|
41
|
+
"hash": "1b8f201fc8ec18f5851a826c15476b6d516b5a0ccb1c9b5e92488e14d90ed899"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"date": 1720672296862,
|
|
45
|
+
"name": "logs/connections-2024-07-11-13.log",
|
|
46
|
+
"hash": "7a32a7cd575038336c75291e5a9ea2dae54a24550ff0442aed19ab30855145ea"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"date": 1720769528029,
|
|
50
|
+
"name": "logs/connections-2024-07-12-16.log",
|
|
51
|
+
"hash": "8d83b77fcf7c207fa3e4f742a51b7f4193e650bad84c4fd25b0089a9e4234d76"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"date": 1720772147824,
|
|
55
|
+
"name": "logs/connections-2024-07-12-17.log",
|
|
56
|
+
"hash": "473b0df886a34d0e37a3ab49d8945dc522093acda5ebbfce7d5191e7a17a4a61"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"date": 1720781274006,
|
|
60
|
+
"name": "logs/connections-2024-07-12-19.log",
|
|
61
|
+
"hash": "7c23a5913fcd07f71a5dc4c4b7bfbc5f0d12dc37eb97755be00c4792beef1af9"
|
|
37
62
|
}
|
|
38
63
|
],
|
|
39
64
|
"hashType": "sha256"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
2024-07-
|
|
2
|
-
2024-07-
|
|
3
|
-
2024-07-
|
|
4
|
-
2024-07-
|
|
1
|
+
2024-07-11T12:59:03+09:00 info: File Storage is Ready.
|
|
2
|
+
2024-07-11T12:59:04+09:00 error: oracledb module loading failed
|
|
3
|
+
2024-07-11T12:59:04+09:00 error: oracledb module loading failed
|
|
4
|
+
2024-07-11T12:59:04+09:00 error: Cannot find module '@thiagoelg/node-printer'
|
|
5
5
|
Require stack:
|
|
6
6
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/print.js
|
|
7
7
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/index.js
|
|
@@ -10,7 +10,7 @@ Require stack:
|
|
|
10
10
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/index.js
|
|
11
11
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/dist-server/server-dev.js
|
|
12
12
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/bin/things-factory-dev
|
|
13
|
-
2024-07-
|
|
13
|
+
2024-07-11T12:59:04+09:00 error: Cannot find module '@thiagoelg/node-printer'
|
|
14
14
|
Require stack:
|
|
15
15
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/middlewares/index.js
|
|
16
16
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/index.js
|
|
@@ -18,6 +18,6 @@ Require stack:
|
|
|
18
18
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/index.js
|
|
19
19
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/dist-server/server-dev.js
|
|
20
20
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/bin/things-factory-dev
|
|
21
|
-
2024-07-
|
|
22
|
-
2024-07-
|
|
23
|
-
2024-07-
|
|
21
|
+
2024-07-11T12:59:05+09:00 info: Default DataSource established
|
|
22
|
+
2024-07-11T12:59:06+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
23
|
+
2024-07-11T12:59:06+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
2024-07-11T13:31:36+09:00 info: File Storage is Ready.
|
|
2
|
+
2024-07-11T13:31:37+09:00 error: oracledb module loading failed
|
|
3
|
+
2024-07-11T13:31:37+09:00 error: oracledb module loading failed
|
|
4
|
+
2024-07-11T13:31:37+09:00 error: Cannot find module '@thiagoelg/node-printer'
|
|
5
|
+
Require stack:
|
|
6
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/print.js
|
|
7
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/index.js
|
|
8
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/index.js
|
|
9
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/lib/module-loader.js
|
|
10
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/index.js
|
|
11
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/dist-server/server-dev.js
|
|
12
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/bin/things-factory-dev
|
|
13
|
+
2024-07-11T13:31:37+09:00 error: Cannot find module '@thiagoelg/node-printer'
|
|
14
|
+
Require stack:
|
|
15
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/middlewares/index.js
|
|
16
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/index.js
|
|
17
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/lib/module-loader.js
|
|
18
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/index.js
|
|
19
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/dist-server/server-dev.js
|
|
20
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/bin/things-factory-dev
|
|
21
|
+
2024-07-11T13:31:38+09:00 info: Default DataSource established
|
|
22
|
+
2024-07-11T13:31:39+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
23
|
+
2024-07-11T13:31:39+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
2024-07-
|
|
2
|
-
2024-07-
|
|
1
|
+
2024-07-12T16:32:07+09:00 info: File Storage is Ready.
|
|
2
|
+
2024-07-12T16:32:08+09:00 error: Error: Cannot find module 'oracledb'
|
|
3
3
|
Require stack:
|
|
4
4
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/connector/oracle-connector.js
|
|
5
5
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/connector/index.js
|
|
@@ -25,7 +25,7 @@ Require stack:
|
|
|
25
25
|
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
26
26
|
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
27
27
|
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
28
|
-
2024-07-
|
|
28
|
+
2024-07-12T16:32:08+09:00 error: Error: Cannot find module 'oracledb'
|
|
29
29
|
Require stack:
|
|
30
30
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/task/oracle-procedure.js
|
|
31
31
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/task/index.js
|
|
@@ -46,12 +46,12 @@ Require stack:
|
|
|
46
46
|
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
47
47
|
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
48
48
|
at require (node:internal/modules/helpers:179:18)
|
|
49
|
-
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/task/index.js:
|
|
49
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/task/index.js:43:1)
|
|
50
50
|
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
51
51
|
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
52
52
|
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
53
53
|
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
54
|
-
2024-07-
|
|
54
|
+
2024-07-12T16:32:08+09:00 error: Error: Cannot find module '@thiagoelg/node-printer'
|
|
55
55
|
Require stack:
|
|
56
56
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/print.js
|
|
57
57
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/index.js
|
|
@@ -76,7 +76,7 @@ Require stack:
|
|
|
76
76
|
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
77
77
|
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
78
78
|
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
79
|
-
2024-07-
|
|
79
|
+
2024-07-12T16:32:08+09:00 error: Error: Cannot find module '@thiagoelg/node-printer'
|
|
80
80
|
Require stack:
|
|
81
81
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/middlewares/index.js
|
|
82
82
|
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/index.js
|
|
@@ -100,6 +100,6 @@ Require stack:
|
|
|
100
100
|
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
101
101
|
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
102
102
|
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
103
|
-
2024-07-
|
|
104
|
-
2024-07-
|
|
105
|
-
2024-07-
|
|
103
|
+
2024-07-12T16:32:09+09:00 info: Default DataSource established
|
|
104
|
+
2024-07-12T16:32:10+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
105
|
+
2024-07-12T16:32:10+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|