@operato/scene-manufacturing 1.3.20 → 1.3.27
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.d.ts +3 -0
- package/dist/tact-timer.js +36 -20
- 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 +11 -6
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +9 -39
- package/logs/application-2024-10-12-15.log +105 -0
- package/logs/application-2024-10-12-16.log +105 -0
- package/logs/{application-2024-07-11-13.log → application-2024-10-13-01.log} +8 -8
- package/logs/connections-2024-10-12-15.log +50 -0
- package/logs/connections-2024-10-12-16.log +50 -0
- package/logs/connections-2024-10-13-01.log +47 -0
- package/package.json +2 -2
- package/src/tact-timer.ts +44 -23
- package/translations/en.json +11 -10
- package/translations/ja.json +10 -9
- package/translations/ko.json +5 -4
- package/translations/ms.json +9 -8
- package/translations/zh.json +9 -8
- package/tsconfig.tsbuildinfo +1 -1
- package/cache/translations/system/en.json +0 -1
- package/cache/translations/system/ko.json +0 -1
- package/icons/tact-timer-mask.svg +0 -37
- package/logs/application-2024-07-11-12.log +0 -23
- package/logs/connections-2024-06-27-22.log +0 -47
- package/logs/connections-2024-07-05-08.log +0 -50
- package/logs/connections-2024-07-05-12.log +0 -50
- package/logs/connections-2024-07-06-01.log +0 -50
- package/logs/connections-2024-07-06-03.log +0 -50
- package/logs/connections-2024-07-06-11.log +0 -47
- package/logs/connections-2024-07-06-12.log +0 -50
- package/logs/connections-2024-07-11-12.log +0 -47
- package/logs/connections-2024-07-11-13.log +0 -47
|
@@ -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,14 +6,19 @@
|
|
|
6
6
|
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/application-2024-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1728715931975,
|
|
10
|
+
"name": "logs/application-2024-10-12-15.log",
|
|
11
|
+
"hash": "5c3bdc98809f52fc0616645665bf2a6425549eac0f050006427d3bfcadc51e07"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"date":
|
|
15
|
-
"name": "logs/application-2024-
|
|
16
|
-
"hash": "
|
|
14
|
+
"date": 1728718043975,
|
|
15
|
+
"name": "logs/application-2024-10-12-16.log",
|
|
16
|
+
"hash": "d1d6c8f0d82c2cbff8ea0c8599d8a4a1343574385480fbdcc49539d10f02d125"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"date": 1728748811809,
|
|
20
|
+
"name": "logs/application-2024-10-13-01.log",
|
|
21
|
+
"hash": "9be149efac80ac4f01c989c1cc0d9c197a13b32c5ce58d02448507de55af5801"
|
|
17
22
|
}
|
|
18
23
|
],
|
|
19
24
|
"hashType": "sha256"
|
|
@@ -6,49 +6,19 @@
|
|
|
6
6
|
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/connections-2024-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1728715933727,
|
|
10
|
+
"name": "logs/connections-2024-10-12-15.log",
|
|
11
|
+
"hash": "644d34ed94e9f0617a5650c8072e070b2fd70993ade8fc1dab4e3d5b4d0ff437"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"date":
|
|
15
|
-
"name": "logs/connections-2024-
|
|
16
|
-
"hash": "
|
|
14
|
+
"date": 1728718045743,
|
|
15
|
+
"name": "logs/connections-2024-10-12-16.log",
|
|
16
|
+
"hash": "e6e10c0f311ee6f39c3b68f2157928aaa91be5cd6460ac602df43dfdab574184"
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
|
-
"date":
|
|
20
|
-
"name": "logs/connections-2024-
|
|
21
|
-
"hash": "
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"date": 1720197808800,
|
|
25
|
-
"name": "logs/connections-2024-07-06-01.log",
|
|
26
|
-
"hash": "20a27adf498638e92d964cefb0a15c246d1bd3e3e50caeb358a5ee56c071b223"
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"date": 1720204705240,
|
|
30
|
-
"name": "logs/connections-2024-07-06-03.log",
|
|
31
|
-
"hash": "e9b0077acc0212231c578f4f52420917879f9841e3681b59c2e33ef392a38c53"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"date": 1720231836497,
|
|
35
|
-
"name": "logs/connections-2024-07-06-11.log",
|
|
36
|
-
"hash": "90547f443988ace04bdcd961cefa8e473792444776e628273dd29e6cd70092c7"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"date": 1720235760768,
|
|
40
|
-
"name": "logs/connections-2024-07-06-12.log",
|
|
41
|
-
"hash": "683660cbeda45a721e399b95a8e16ab6c88ca8ef13b53eed9cc526294cae0de7"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"date": 1720670343838,
|
|
45
|
-
"name": "logs/connections-2024-07-11-12.log",
|
|
46
|
-
"hash": "1b8f201fc8ec18f5851a826c15476b6d516b5a0ccb1c9b5e92488e14d90ed899"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"date": 1720672296862,
|
|
50
|
-
"name": "logs/connections-2024-07-11-13.log",
|
|
51
|
-
"hash": "7a32a7cd575038336c75291e5a9ea2dae54a24550ff0442aed19ab30855145ea"
|
|
19
|
+
"date": 1728748813512,
|
|
20
|
+
"name": "logs/connections-2024-10-13-01.log",
|
|
21
|
+
"hash": "19229fe0bbd7daffba86b8c21517356b37ab6b83d3d337b4faac3e42a47eec51"
|
|
52
22
|
}
|
|
53
23
|
],
|
|
54
24
|
"hashType": "sha256"
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
2024-10-12T15:52:13+09:00 info: File Storage is Ready.
|
|
2
|
+
2024-10-12T15:52:13+09:00 error: Error: Cannot find module 'oracledb'
|
|
3
|
+
Require stack:
|
|
4
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/connector/oracle-connector.js
|
|
5
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/connector/index.js
|
|
6
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/index.js
|
|
7
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/index.js
|
|
8
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/lib/module-loader.js
|
|
9
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/index.js
|
|
10
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/dist-server/server-dev.js
|
|
11
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/bin/things-factory-dev
|
|
12
|
+
at Module._resolveFilename (node:internal/modules/cjs/loader:1145:15)
|
|
13
|
+
at Module._load (node:internal/modules/cjs/loader:986:27)
|
|
14
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
15
|
+
at require (node:internal/modules/helpers:179:18)
|
|
16
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/connector/oracle-connector.js:7:20)
|
|
17
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
18
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
19
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
20
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
21
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
22
|
+
at require (node:internal/modules/helpers:179:18)
|
|
23
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/connector/index.js:11:1)
|
|
24
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
25
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
26
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
27
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
28
|
+
2024-10-12T15:52:14+09:00 error: Error: Cannot find module 'oracledb'
|
|
29
|
+
Require stack:
|
|
30
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/task/oracle-procedure.js
|
|
31
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/task/index.js
|
|
32
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/index.js
|
|
33
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/index.js
|
|
34
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/lib/module-loader.js
|
|
35
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/index.js
|
|
36
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/dist-server/server-dev.js
|
|
37
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/bin/things-factory-dev
|
|
38
|
+
at Module._resolveFilename (node:internal/modules/cjs/loader:1145:15)
|
|
39
|
+
at Module._load (node:internal/modules/cjs/loader:986:27)
|
|
40
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
41
|
+
at require (node:internal/modules/helpers:179:18)
|
|
42
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/task/oracle-procedure.js:9:20)
|
|
43
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
44
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
45
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
46
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
47
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
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:43:1)
|
|
50
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
51
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
52
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
53
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
54
|
+
2024-10-12T15:52:14+09:00 error: Error: Cannot find module '@thiagoelg/node-printer'
|
|
55
|
+
Require stack:
|
|
56
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/print.js
|
|
57
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/index.js
|
|
58
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/index.js
|
|
59
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/lib/module-loader.js
|
|
60
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/index.js
|
|
61
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/dist-server/server-dev.js
|
|
62
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/bin/things-factory-dev
|
|
63
|
+
at Module._resolveFilename (node:internal/modules/cjs/loader:1145:15)
|
|
64
|
+
at Module._load (node:internal/modules/cjs/loader:986:27)
|
|
65
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
66
|
+
at require (node:internal/modules/helpers:179:18)
|
|
67
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/print.js:10:17)
|
|
68
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
69
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
70
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
71
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
72
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
73
|
+
at require (node:internal/modules/helpers:179:18)
|
|
74
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/index.js:4:17)
|
|
75
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
76
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
77
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
78
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
79
|
+
2024-10-12T15:52:14+09:00 error: Error: Cannot find module '@thiagoelg/node-printer'
|
|
80
|
+
Require stack:
|
|
81
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/middlewares/index.js
|
|
82
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/index.js
|
|
83
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/lib/module-loader.js
|
|
84
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/index.js
|
|
85
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/dist-server/server-dev.js
|
|
86
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/bin/things-factory-dev
|
|
87
|
+
at Module._resolveFilename (node:internal/modules/cjs/loader:1145:15)
|
|
88
|
+
at Module._load (node:internal/modules/cjs/loader:986:27)
|
|
89
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
90
|
+
at require (node:internal/modules/helpers:179:18)
|
|
91
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/middlewares/index.js:8:19)
|
|
92
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
93
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
94
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
95
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
96
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
97
|
+
at require (node:internal/modules/helpers:179:18)
|
|
98
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/index.js:4:22)
|
|
99
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
100
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
101
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
102
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
103
|
+
2024-10-12T15:52:15+09:00 info: Default DataSource established
|
|
104
|
+
2024-10-12T15:52:16+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
105
|
+
2024-10-12T15:52:16+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
2024-10-12T16:27:25+09:00 info: File Storage is Ready.
|
|
2
|
+
2024-10-12T16:27:25+09:00 error: Error: Cannot find module 'oracledb'
|
|
3
|
+
Require stack:
|
|
4
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/connector/oracle-connector.js
|
|
5
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/connector/index.js
|
|
6
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/index.js
|
|
7
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/index.js
|
|
8
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/lib/module-loader.js
|
|
9
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/index.js
|
|
10
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/dist-server/server-dev.js
|
|
11
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/bin/things-factory-dev
|
|
12
|
+
at Module._resolveFilename (node:internal/modules/cjs/loader:1145:15)
|
|
13
|
+
at Module._load (node:internal/modules/cjs/loader:986:27)
|
|
14
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
15
|
+
at require (node:internal/modules/helpers:179:18)
|
|
16
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/connector/oracle-connector.js:7:20)
|
|
17
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
18
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
19
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
20
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
21
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
22
|
+
at require (node:internal/modules/helpers:179:18)
|
|
23
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/connector/index.js:11:1)
|
|
24
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
25
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
26
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
27
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
28
|
+
2024-10-12T16:27:26+09:00 error: Error: Cannot find module 'oracledb'
|
|
29
|
+
Require stack:
|
|
30
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/task/oracle-procedure.js
|
|
31
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/task/index.js
|
|
32
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/index.js
|
|
33
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/index.js
|
|
34
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/lib/module-loader.js
|
|
35
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/index.js
|
|
36
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/dist-server/server-dev.js
|
|
37
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/bin/things-factory-dev
|
|
38
|
+
at Module._resolveFilename (node:internal/modules/cjs/loader:1145:15)
|
|
39
|
+
at Module._load (node:internal/modules/cjs/loader:986:27)
|
|
40
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
41
|
+
at require (node:internal/modules/helpers:179:18)
|
|
42
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/integration-base/dist-server/engine/task/oracle-procedure.js:9:20)
|
|
43
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
44
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
45
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
46
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
47
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
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:43:1)
|
|
50
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
51
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
52
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
53
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
54
|
+
2024-10-12T16:27:26+09:00 error: Error: Cannot find module '@thiagoelg/node-printer'
|
|
55
|
+
Require stack:
|
|
56
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/print.js
|
|
57
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/index.js
|
|
58
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/index.js
|
|
59
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/lib/module-loader.js
|
|
60
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/index.js
|
|
61
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/dist-server/server-dev.js
|
|
62
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/bin/things-factory-dev
|
|
63
|
+
at Module._resolveFilename (node:internal/modules/cjs/loader:1145:15)
|
|
64
|
+
at Module._load (node:internal/modules/cjs/loader:986:27)
|
|
65
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
66
|
+
at require (node:internal/modules/helpers:179:18)
|
|
67
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/print.js:10:17)
|
|
68
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
69
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
70
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
71
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
72
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
73
|
+
at require (node:internal/modules/helpers:179:18)
|
|
74
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/board-service/dist-server/controllers/index.js:4:17)
|
|
75
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
76
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
77
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
78
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
79
|
+
2024-10-12T16:27:26+09:00 error: Error: Cannot find module '@thiagoelg/node-printer'
|
|
80
|
+
Require stack:
|
|
81
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/middlewares/index.js
|
|
82
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/index.js
|
|
83
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/lib/module-loader.js
|
|
84
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/env/index.js
|
|
85
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/dist-server/server-dev.js
|
|
86
|
+
- /Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/shell/bin/things-factory-dev
|
|
87
|
+
at Module._resolveFilename (node:internal/modules/cjs/loader:1145:15)
|
|
88
|
+
at Module._load (node:internal/modules/cjs/loader:986:27)
|
|
89
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
90
|
+
at require (node:internal/modules/helpers:179:18)
|
|
91
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/middlewares/index.js:8:19)
|
|
92
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
93
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
94
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
95
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
96
|
+
at Module.require (node:internal/modules/cjs/loader:1233:19)
|
|
97
|
+
at require (node:internal/modules/helpers:179:18)
|
|
98
|
+
at Object.<anonymous> (/Users/super/Documents/GitHub/operato-scene/node_modules/@things-factory/print-service/dist-server/index.js:4:22)
|
|
99
|
+
at Module._compile (node:internal/modules/cjs/loader:1358:14)
|
|
100
|
+
at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
|
|
101
|
+
at Module.load (node:internal/modules/cjs/loader:1208:32)
|
|
102
|
+
at Module._load (node:internal/modules/cjs/loader:1024:12)
|
|
103
|
+
2024-10-12T16:27:27+09:00 info: Default DataSource established
|
|
104
|
+
2024-10-12T16:27:28+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
105
|
+
2024-10-12T16:27:28+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
2024-
|
|
2
|
-
2024-
|
|
3
|
-
2024-
|
|
4
|
-
2024-
|
|
1
|
+
2024-10-13T01:00:13+09:00 info: File Storage is Ready.
|
|
2
|
+
2024-10-13T01:00:13+09:00 error: oracledb module loading failed
|
|
3
|
+
2024-10-13T01:00:13+09:00 error: oracledb module loading failed
|
|
4
|
+
2024-10-13T01:00:13+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-
|
|
13
|
+
2024-10-13T01:00:14+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-
|
|
22
|
-
2024-
|
|
23
|
-
2024-
|
|
21
|
+
2024-10-13T01:00:15+09:00 info: Default DataSource established
|
|
22
|
+
2024-10-13T01:00:16+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
23
|
+
2024-10-13T01:00:16+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
2024-10-12T15:52:16+09:00 info: Initializing ConnectionManager...
|
|
2
|
+
2024-10-12T15:52:16+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
+
2024-10-12T15:52:16+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
+
2024-10-12T15:52:16+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
+
2024-10-12T15:52:16+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
+
2024-10-12T15:52:16+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
+
2024-10-12T15:52:16+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
+
2024-10-12T15:52:16+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
+
2024-10-12T15:52:16+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
+
2024-10-12T15:52:16+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
+
2024-10-12T15:52:16+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
+
2024-10-12T15:52:16+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
+
2024-10-12T15:52:16+09:00 info: Connector 'operato-connector' started to ready
|
|
14
|
+
2024-10-12T15:52:16+09:00 info: Connector 'email-connector' started to ready
|
|
15
|
+
2024-10-12T15:52:16+09:00 info: Connector 'influxdb-connector' started to ready
|
|
16
|
+
2024-10-12T15:52:16+09:00 info: Connector 'msgraph-connector' started to ready
|
|
17
|
+
2024-10-12T15:52:16+09:00 info: Connector 'proxy-connector' started to ready
|
|
18
|
+
2024-10-12T15:52:16+09:00 info: echo-back-servers are ready
|
|
19
|
+
2024-10-12T15:52:16+09:00 info: echo-back connections are ready
|
|
20
|
+
2024-10-12T15:52:16+09:00 info: http-connector connections are ready
|
|
21
|
+
2024-10-12T15:52:16+09:00 info: graphql-connector connections are ready
|
|
22
|
+
2024-10-12T15:52:16+09:00 info: sqlite-connector connections are ready
|
|
23
|
+
2024-10-12T15:52:16+09:00 info: postgresql-connector connections are ready
|
|
24
|
+
2024-10-12T15:52:16+09:00 info: mqtt-connector connections are ready
|
|
25
|
+
2024-10-12T15:52:16+09:00 info: mssql-connector connections are ready
|
|
26
|
+
2024-10-12T15:52:16+09:00 info: oracle-connector connections are ready
|
|
27
|
+
2024-10-12T15:52:16+09:00 info: mysql-connector connections are ready
|
|
28
|
+
2024-10-12T15:52:16+09:00 info: socket servers are ready
|
|
29
|
+
2024-10-12T15:52:16+09:00 info: operato-connector connections are ready
|
|
30
|
+
2024-10-12T15:52:16+09:00 info: email connections are ready
|
|
31
|
+
2024-10-12T15:52:16+09:00 info: influxdb connections are ready
|
|
32
|
+
2024-10-12T15:52:16+09:00 info: msgraph-connector connections are ready
|
|
33
|
+
2024-10-12T15:52:16+09:00 info: proxy-connector connections are ready
|
|
34
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'echo-back-server' ready
|
|
35
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'echo-back' ready
|
|
36
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'http-connector' ready
|
|
37
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'graphql-connector' ready
|
|
38
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'sqlite-connector' ready
|
|
39
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'postgresql-connector' ready
|
|
40
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'mqtt-connector' ready
|
|
41
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'mssql-connector' ready
|
|
42
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'oracle-connector' ready
|
|
43
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'mysql-connector' ready
|
|
44
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'socket-server' ready
|
|
45
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'operato-connector' ready
|
|
46
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'email-connector' ready
|
|
47
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'influxdb-connector' ready
|
|
48
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'msgraph-connector' ready
|
|
49
|
+
2024-10-12T15:52:16+09:00 info: All connector for 'proxy-connector' ready
|
|
50
|
+
2024-10-12T15:52:16+09:00 info: ConnectionManager initialization done:
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
2024-10-12T16:27:28+09:00 info: Initializing ConnectionManager...
|
|
2
|
+
2024-10-12T16:27:28+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
+
2024-10-12T16:27:28+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
+
2024-10-12T16:27:28+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
+
2024-10-12T16:27:28+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
+
2024-10-12T16:27:28+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
+
2024-10-12T16:27:28+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
+
2024-10-12T16:27:28+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
+
2024-10-12T16:27:28+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
+
2024-10-12T16:27:28+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
+
2024-10-12T16:27:28+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
+
2024-10-12T16:27:28+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
+
2024-10-12T16:27:28+09:00 info: Connector 'operato-connector' started to ready
|
|
14
|
+
2024-10-12T16:27:28+09:00 info: Connector 'email-connector' started to ready
|
|
15
|
+
2024-10-12T16:27:28+09:00 info: Connector 'influxdb-connector' started to ready
|
|
16
|
+
2024-10-12T16:27:28+09:00 info: Connector 'msgraph-connector' started to ready
|
|
17
|
+
2024-10-12T16:27:28+09:00 info: Connector 'proxy-connector' started to ready
|
|
18
|
+
2024-10-12T16:27:28+09:00 info: echo-back-servers are ready
|
|
19
|
+
2024-10-12T16:27:28+09:00 info: echo-back connections are ready
|
|
20
|
+
2024-10-12T16:27:28+09:00 info: http-connector connections are ready
|
|
21
|
+
2024-10-12T16:27:28+09:00 info: graphql-connector connections are ready
|
|
22
|
+
2024-10-12T16:27:28+09:00 info: sqlite-connector connections are ready
|
|
23
|
+
2024-10-12T16:27:28+09:00 info: postgresql-connector connections are ready
|
|
24
|
+
2024-10-12T16:27:28+09:00 info: mqtt-connector connections are ready
|
|
25
|
+
2024-10-12T16:27:28+09:00 info: mssql-connector connections are ready
|
|
26
|
+
2024-10-12T16:27:28+09:00 info: oracle-connector connections are ready
|
|
27
|
+
2024-10-12T16:27:28+09:00 info: mysql-connector connections are ready
|
|
28
|
+
2024-10-12T16:27:28+09:00 info: socket servers are ready
|
|
29
|
+
2024-10-12T16:27:28+09:00 info: operato-connector connections are ready
|
|
30
|
+
2024-10-12T16:27:28+09:00 info: email connections are ready
|
|
31
|
+
2024-10-12T16:27:28+09:00 info: influxdb connections are ready
|
|
32
|
+
2024-10-12T16:27:28+09:00 info: msgraph-connector connections are ready
|
|
33
|
+
2024-10-12T16:27:28+09:00 info: proxy-connector connections are ready
|
|
34
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'echo-back-server' ready
|
|
35
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'echo-back' ready
|
|
36
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'http-connector' ready
|
|
37
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'graphql-connector' ready
|
|
38
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'sqlite-connector' ready
|
|
39
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'postgresql-connector' ready
|
|
40
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'mqtt-connector' ready
|
|
41
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'mssql-connector' ready
|
|
42
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'oracle-connector' ready
|
|
43
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'mysql-connector' ready
|
|
44
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'socket-server' ready
|
|
45
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'operato-connector' ready
|
|
46
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'email-connector' ready
|
|
47
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'influxdb-connector' ready
|
|
48
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'msgraph-connector' ready
|
|
49
|
+
2024-10-12T16:27:28+09:00 info: All connector for 'proxy-connector' ready
|
|
50
|
+
2024-10-12T16:27:28+09:00 info: ConnectionManager initialization done:
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
2024-10-13T01:00:16+09:00 info: Initializing ConnectionManager...
|
|
2
|
+
2024-10-13T01:00:16+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
+
2024-10-13T01:00:16+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
+
2024-10-13T01:00:16+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
+
2024-10-13T01:00:16+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
+
2024-10-13T01:00:16+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
+
2024-10-13T01:00:16+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
+
2024-10-13T01:00:16+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
+
2024-10-13T01:00:16+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
+
2024-10-13T01:00:16+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
+
2024-10-13T01:00:16+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
+
2024-10-13T01:00:16+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
+
2024-10-13T01:00:16+09:00 info: Connector 'operato-connector' started to ready
|
|
14
|
+
2024-10-13T01:00:16+09:00 info: Connector 'email-connector' started to ready
|
|
15
|
+
2024-10-13T01:00:16+09:00 info: Connector 'influxdb-connector' started to ready
|
|
16
|
+
2024-10-13T01:00:16+09:00 info: Connector 'msgraph-connector' started to ready
|
|
17
|
+
2024-10-13T01:00:16+09:00 info: echo-back-servers are ready
|
|
18
|
+
2024-10-13T01:00:16+09:00 info: echo-back connections are ready
|
|
19
|
+
2024-10-13T01:00:16+09:00 info: http-connector connections are ready
|
|
20
|
+
2024-10-13T01:00:16+09:00 info: graphql-connector connections are ready
|
|
21
|
+
2024-10-13T01:00:16+09:00 info: sqlite-connector connections are ready
|
|
22
|
+
2024-10-13T01:00:16+09:00 info: postgresql-connector connections are ready
|
|
23
|
+
2024-10-13T01:00:16+09:00 info: mqtt-connector connections are ready
|
|
24
|
+
2024-10-13T01:00:16+09:00 info: mssql-connector connections are ready
|
|
25
|
+
2024-10-13T01:00:16+09:00 info: oracle-connector connections are ready
|
|
26
|
+
2024-10-13T01:00:16+09:00 info: mysql-connector connections are ready
|
|
27
|
+
2024-10-13T01:00:16+09:00 info: socket servers are ready
|
|
28
|
+
2024-10-13T01:00:16+09:00 info: graphql-connector connections are ready
|
|
29
|
+
2024-10-13T01:00:16+09:00 info: email connections are ready
|
|
30
|
+
2024-10-13T01:00:16+09:00 info: influxdb connections are ready
|
|
31
|
+
2024-10-13T01:00:16+09:00 info: msgraph-connector connections are ready
|
|
32
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'echo-back-server' ready
|
|
33
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'echo-back' ready
|
|
34
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'http-connector' ready
|
|
35
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'graphql-connector' ready
|
|
36
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'sqlite-connector' ready
|
|
37
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'postgresql-connector' ready
|
|
38
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'mqtt-connector' ready
|
|
39
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'mssql-connector' ready
|
|
40
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'oracle-connector' ready
|
|
41
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'mysql-connector' ready
|
|
42
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'socket-server' ready
|
|
43
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'operato-connector' ready
|
|
44
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'email-connector' ready
|
|
45
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'influxdb-connector' ready
|
|
46
|
+
2024-10-13T01:00:16+09:00 info: All connector for 'msgraph-connector' ready
|
|
47
|
+
2024-10-13T01:00:16+09:00 info: ConnectionManager initialization done:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/scene-manufacturing",
|
|
3
3
|
"description": "Things scene components for manufacturing industry",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.27",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"things-scene": true,
|
|
7
7
|
"author": "heartyoh",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"prettier --write"
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "31288a647e34b6ddf9b9b18cf8d3c4ec6aee369d"
|
|
61
61
|
}
|