@hatiolab/things-scene 2.7.9 → 2.7.13
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/db.sqlite +0 -0
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +3 -3
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +21 -6
- package/logs/application-2021-11-15-23.log +4 -0
- package/logs/connections-2021-11-08-22.log +32 -0
- package/logs/connections-2021-11-09-19.log +32 -0
- package/logs/connections-2021-11-10-23.log +32 -0
- package/logs/connections-2021-11-13-21.log +32 -0
- package/logs/connections-2021-11-15-23.log +32 -0
- package/package.json +6 -4
- package/things-scene-ie.js +1 -1
- package/things-scene-min.js +1 -1
- package/things-scene.mjs +1 -1
- package/tsconfig.json +9 -0
- package/types/animation/animate.d.ts +4 -0
- package/types/animation/animations/animation.d.ts +14 -0
- package/types/animation/animations/fade.d.ts +4 -0
- package/types/animation/animations/heartbeat.d.ts +4 -0
- package/types/animation/animations/moving.d.ts +4 -0
- package/types/animation/animations/outline.d.ts +10 -0
- package/types/animation/animations/rotation.d.ts +4 -0
- package/types/animation/animations/vibration.d.ts +4 -0
- package/types/animation/compile.d.ts +1 -0
- package/types/animation/delta.d.ts +19 -0
- package/types/animation/index.d.ts +1 -0
- package/types/command/command-change.d.ts +7 -0
- package/types/command/command-migrate.d.ts +4 -0
- package/types/command/command.d.ts +5 -0
- package/types/command/snapshot-commander.d.ts +15 -0
- package/types/components/audio.d.ts +44 -0
- package/types/components/cloud.d.ts +3 -0
- package/types/components/component.d.ts +213 -0
- package/types/components/container-abstract.d.ts +48 -0
- package/types/components/container.d.ts +37 -0
- package/types/components/data/data-mapping.d.ts +15 -0
- package/types/components/data/data.d.ts +8 -0
- package/types/components/data/evaluator.d.ts +1 -0
- package/types/components/donut.d.ts +3 -0
- package/types/components/drawer/draw-image-pendable.d.ts +1 -0
- package/types/components/drawer/effect.d.ts +1 -0
- package/types/components/drawer/fill.d.ts +14 -0
- package/types/components/drawer/format.d.ts +1 -0
- package/types/components/drawer/line.d.ts +3 -0
- package/types/components/drawer/stroke.d.ts +1 -0
- package/types/components/drawer/text-wrapper.d.ts +10 -0
- package/types/components/drawer/text.d.ts +3 -0
- package/types/components/ellipse.d.ts +3 -0
- package/types/components/file/ondropfile.d.ts +1 -0
- package/types/components/fit/fit.d.ts +15 -0
- package/types/components/geometry/transcoord.d.ts +37 -0
- package/types/components/geometry/union.d.ts +6 -0
- package/types/components/gif/super-gif.d.ts +18 -0
- package/types/components/gif-view.d.ts +25 -0
- package/types/components/global-ref.d.ts +34 -0
- package/types/components/group.d.ts +15 -0
- package/types/components/html/elements.d.ts +2 -0
- package/types/components/html/fill.d.ts +1 -0
- package/types/components/html/reposition.d.ts +1 -0
- package/types/components/html/shadow.d.ts +1 -0
- package/types/components/html-overlay-container.d.ts +27 -0
- package/types/components/html-overlay-element.d.ts +25 -0
- package/types/components/image-view.d.ts +66 -0
- package/types/components/index.d.ts +31 -0
- package/types/components/info-window.d.ts +40 -0
- package/types/components/line.d.ts +16 -0
- package/types/components/local-ref.d.ts +46 -0
- package/types/components/mixins/data-source.d.ts +9 -0
- package/types/components/mixins/html-element.d.ts +23 -0
- package/types/components/mixins/move-handle.d.ts +11 -0
- package/types/components/mixins/rect-path.d.ts +12 -0
- package/types/components/mixins/value-holder.d.ts +18 -0
- package/types/components/mutater/bounds.d.ts +10 -0
- package/types/components/mutater/path.d.ts +5 -0
- package/types/components/outline/ellipse-outline.d.ts +1 -0
- package/types/components/outline/path-outline.d.ts +1 -0
- package/types/components/path.d.ts +3 -0
- package/types/components/polygon.d.ts +4 -0
- package/types/components/polyline.d.ts +4 -0
- package/types/components/popup.d.ts +47 -0
- package/types/components/rect.d.ts +35 -0
- package/types/components/retention/retention-manager.d.ts +8 -0
- package/types/components/root-container.d.ts +76 -0
- package/types/components/ruler.d.ts +15 -0
- package/types/components/shape.d.ts +22 -0
- package/types/components/star.d.ts +3 -0
- package/types/components/text/substitutor.d.ts +3 -0
- package/types/components/text.d.ts +15 -0
- package/types/components/triangle.d.ts +3 -0
- package/types/components/variable.d.ts +24 -0
- package/types/const.d.ts +31 -0
- package/types/core/collection.d.ts +8 -0
- package/types/core/debug.d.ts +1 -0
- package/types/core/deep-equals.d.ts +1 -0
- package/types/core/dom-to-image.d.ts +127 -0
- package/types/core/event.d.ts +181 -0
- package/types/core/index.d.ts +2 -0
- package/types/core/list.d.ts +32 -0
- package/types/core/logger.d.ts +3 -0
- package/types/core/memoize.d.ts +6 -0
- package/types/core/mixin.d.ts +1 -0
- package/types/core/obj-accessor.d.ts +1 -0
- package/types/core/reference-map.d.ts +14 -0
- package/types/core/script-loader.d.ts +3 -0
- package/types/core/snapshot-taker.d.ts +12 -0
- package/types/core/stack.d.ts +2 -0
- package/types/core/timecapsule.d.ts +18 -0
- package/types/core/utils.d.ts +4 -0
- package/types/effect/gradation.d.ts +1 -0
- package/types/effect/index.d.ts +1 -0
- package/types/effect/shadow.d.ts +2 -0
- package/types/effect/turn.d.ts +1 -0
- package/types/event/event-engine.d.ts +12 -0
- package/types/event/event-pump.d.ts +11 -0
- package/types/event/event-tracker.d.ts +21 -0
- package/types/event/index.d.ts +2 -0
- package/types/event/ua-event-handler.d.ts +32 -0
- package/types/event-map/event-map.d.ts +9 -0
- package/types/event-map/index.d.ts +1 -0
- package/types/event-map/move-handler.d.ts +1 -0
- package/types/event-map/text-editor-lite.d.ts +1 -0
- package/types/index.d.ts +1 -0
- package/types/layer/action/emphasize.d.ts +2 -0
- package/types/layer/action/popup.d.ts +2 -0
- package/types/layer/action/pressed.d.ts +2 -0
- package/types/layer/guide-layer.d.ts +44 -0
- package/types/layer/index.d.ts +6 -0
- package/types/layer/layer.d.ts +29 -0
- package/types/layer/model-layer.d.ts +39 -0
- package/types/layer/modeler/control-handler.d.ts +18 -0
- package/types/layer/modeler/focus-outline.d.ts +5 -0
- package/types/layer/modeler/group-outline.d.ts +5 -0
- package/types/layer/modeler/index.d.ts +6 -0
- package/types/layer/modeler/path-handler.d.ts +17 -0
- package/types/layer/modeler/resizer.d.ts +16 -0
- package/types/layer/modeler/rotator.d.ts +15 -0
- package/types/layer/modeling-layer.d.ts +47 -0
- package/types/layer/selection-layer.d.ts +42 -0
- package/types/layer/shift-layer.d.ts +18 -0
- package/types/layer/tag-layer.d.ts +28 -0
- package/types/layout/absolute.d.ts +8 -0
- package/types/layout/card.d.ts +7 -0
- package/types/layout/html-absolute.d.ts +8 -0
- package/types/layout/index.d.ts +7 -0
- package/types/layout/layout.d.ts +11 -0
- package/types/layout/linear-horizontal.d.ts +7 -0
- package/types/layout/linear-vertical.d.ts +7 -0
- package/types/layout/table.d.ts +9 -0
- package/types/license/license.d.ts +18 -0
- package/types/link/arrow_straight.d.ts +3 -0
- package/types/link/curve.d.ts +3 -0
- package/types/link/index.d.ts +4 -0
- package/types/link/link.d.ts +7 -0
- package/types/link/right_angle_straight.d.ts +3 -0
- package/types/link/straight.d.ts +3 -0
- package/types/model/compile.d.ts +1 -0
- package/types/model/duplicate.d.ts +1 -0
- package/types/model/index.d.ts +3 -0
- package/types/model/selector.d.ts +2 -0
- package/types/style/compile.d.ts +1 -0
- package/types/style/index.d.ts +1 -0
- package/types/things-scene/api/add.d.ts +5 -0
- package/types/things-scene/api/align.d.ts +1 -0
- package/types/things-scene/api/change.d.ts +2 -0
- package/types/things-scene/api/clipboard.d.ts +3 -0
- package/types/things-scene/api/distribute.d.ts +1 -0
- package/types/things-scene/api/duplicate.d.ts +4 -0
- package/types/things-scene/api/fullscreen.d.ts +1 -0
- package/types/things-scene/api/group.d.ts +8 -0
- package/types/things-scene/api/index.d.ts +14 -0
- package/types/things-scene/api/listener.d.ts +3 -0
- package/types/things-scene/api/remove.d.ts +4 -0
- package/types/things-scene/api/symmetry.d.ts +2 -0
- package/types/things-scene/api/to-data-url.d.ts +1 -0
- package/types/things-scene/api/variables.d.ts +13 -0
- package/types/things-scene/api/zorder.d.ts +2 -0
- package/types/things-scene/application-context.d.ts +33 -0
- package/types/things-scene/config.d.ts +4 -0
- package/types/things-scene/create.d.ts +12 -0
- package/types/things-scene/fps.d.ts +1 -0
- package/types/things-scene/index.d.ts +16 -0
- package/types/things-scene/polyfill.d.ts +2 -0
- package/types/things-scene/scene.d.ts +146 -0
- package/types/things-scene/version.d.ts +2 -0
- package/logs/application-2021-10-31-21.log +0 -4
- package/logs/connections-2021-10-23-08.log +0 -64
- package/logs/connections-2021-10-31-21.log +0 -32
package/db.sqlite
CHANGED
|
Binary file
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/application-2021-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1636987639693,
|
|
10
|
+
"name": "logs/application-2021-11-15-23.log",
|
|
11
|
+
"hash": "989efcd95d6547418aa1b5ead29a35c2"
|
|
12
12
|
}
|
|
13
13
|
]
|
|
14
14
|
}
|
|
@@ -6,14 +6,29 @@
|
|
|
6
6
|
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/connections-2021-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1636379342974,
|
|
10
|
+
"name": "logs/connections-2021-11-08-22.log",
|
|
11
|
+
"hash": "ca2b45e4cc1cec92fea39e5fc91eba34"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"date":
|
|
15
|
-
"name": "logs/connections-2021-
|
|
16
|
-
"hash": "
|
|
14
|
+
"date": 1636452279062,
|
|
15
|
+
"name": "logs/connections-2021-11-09-19.log",
|
|
16
|
+
"hash": "440f5232b16fab2d61201fe6f0c01fe3"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"date": 1636553036027,
|
|
20
|
+
"name": "logs/connections-2021-11-10-23.log",
|
|
21
|
+
"hash": "ceb793e6685f0e560190fe44e539aa3f"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"date": 1636807410728,
|
|
25
|
+
"name": "logs/connections-2021-11-13-21.log",
|
|
26
|
+
"hash": "de9f43d1a8d8b2b4073ef332d7b52bd7"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"date": 1636987644535,
|
|
30
|
+
"name": "logs/connections-2021-11-15-23.log",
|
|
31
|
+
"hash": "e7877a1cdf28eb28c5470fd61f6ee663"
|
|
17
32
|
}
|
|
18
33
|
]
|
|
19
34
|
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
2021-11-15T14:47:22.950Z info: File Storage is Ready.
|
|
2
|
+
2021-11-15T14:47:28.147Z info: Database connection established
|
|
3
|
+
2021-11-15T14:47:29.684Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
4
|
+
2021-11-15T14:47:29.697Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
2021-11-08T13:49:06.979Z info: Initializing ConnectionManager...
|
|
2
|
+
2021-11-08T13:49:06.980Z info: Connector 'echo-back-server' started to ready
|
|
3
|
+
2021-11-08T13:49:06.980Z info: Connector 'echo-back' started to ready
|
|
4
|
+
2021-11-08T13:49:06.981Z info: Connector 'http-connector' started to ready
|
|
5
|
+
2021-11-08T13:49:06.993Z info: Connector 'graphql-connector' started to ready
|
|
6
|
+
2021-11-08T13:49:06.994Z info: Connector 'sqlite-connector' started to ready
|
|
7
|
+
2021-11-08T13:49:06.994Z info: Connector 'postgresql-connector' started to ready
|
|
8
|
+
2021-11-08T13:49:06.994Z info: Connector 'mqtt-connector' started to ready
|
|
9
|
+
2021-11-08T13:49:06.994Z info: Connector 'mssql-connector' started to ready
|
|
10
|
+
2021-11-08T13:49:06.994Z info: Connector 'oracle-connector' started to ready
|
|
11
|
+
2021-11-08T13:49:06.995Z info: Connector 'socket-server' started to ready
|
|
12
|
+
2021-11-08T13:49:06.995Z info: echo-back-servers are ready
|
|
13
|
+
2021-11-08T13:49:06.995Z info: echo-back connections are ready
|
|
14
|
+
2021-11-08T13:49:06.995Z info: http-connector connections are ready
|
|
15
|
+
2021-11-08T13:49:06.995Z info: graphql-connector connections are ready
|
|
16
|
+
2021-11-08T13:49:06.995Z info: sqlite-connector connections are ready
|
|
17
|
+
2021-11-08T13:49:06.995Z info: postgresql-connector connections are ready
|
|
18
|
+
2021-11-08T13:49:06.995Z info: mqtt-connector connections are ready
|
|
19
|
+
2021-11-08T13:49:06.995Z info: mssql-connector connections are ready
|
|
20
|
+
2021-11-08T13:49:06.995Z info: oracle-connector connections are ready
|
|
21
|
+
2021-11-08T13:49:06.996Z info: socket servers are ready
|
|
22
|
+
2021-11-08T13:49:06.996Z info: All connector for 'echo-back-server' ready
|
|
23
|
+
2021-11-08T13:49:06.996Z info: All connector for 'echo-back' ready
|
|
24
|
+
2021-11-08T13:49:06.996Z info: All connector for 'http-connector' ready
|
|
25
|
+
2021-11-08T13:49:06.996Z info: All connector for 'graphql-connector' ready
|
|
26
|
+
2021-11-08T13:49:06.996Z info: All connector for 'sqlite-connector' ready
|
|
27
|
+
2021-11-08T13:49:06.996Z info: All connector for 'postgresql-connector' ready
|
|
28
|
+
2021-11-08T13:49:06.996Z info: All connector for 'mqtt-connector' ready
|
|
29
|
+
2021-11-08T13:49:06.996Z info: All connector for 'mssql-connector' ready
|
|
30
|
+
2021-11-08T13:49:06.996Z info: All connector for 'oracle-connector' ready
|
|
31
|
+
2021-11-08T13:49:06.996Z info: All connector for 'socket-server' ready
|
|
32
|
+
2021-11-08T13:49:06.996Z info: ConnectionManager initialization done:
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
2021-11-09T10:04:50.506Z info: Initializing ConnectionManager...
|
|
2
|
+
2021-11-09T10:04:50.507Z info: Connector 'echo-back-server' started to ready
|
|
3
|
+
2021-11-09T10:04:50.507Z info: Connector 'echo-back' started to ready
|
|
4
|
+
2021-11-09T10:04:50.508Z info: Connector 'http-connector' started to ready
|
|
5
|
+
2021-11-09T10:04:50.508Z info: Connector 'graphql-connector' started to ready
|
|
6
|
+
2021-11-09T10:04:50.508Z info: Connector 'sqlite-connector' started to ready
|
|
7
|
+
2021-11-09T10:04:50.509Z info: Connector 'postgresql-connector' started to ready
|
|
8
|
+
2021-11-09T10:04:50.509Z info: Connector 'mqtt-connector' started to ready
|
|
9
|
+
2021-11-09T10:04:50.510Z info: Connector 'mssql-connector' started to ready
|
|
10
|
+
2021-11-09T10:04:50.510Z info: Connector 'oracle-connector' started to ready
|
|
11
|
+
2021-11-09T10:04:50.511Z info: Connector 'socket-server' started to ready
|
|
12
|
+
2021-11-09T10:04:50.580Z info: echo-back-servers are ready
|
|
13
|
+
2021-11-09T10:04:50.580Z info: echo-back connections are ready
|
|
14
|
+
2021-11-09T10:04:50.580Z info: http-connector connections are ready
|
|
15
|
+
2021-11-09T10:04:50.580Z info: graphql-connector connections are ready
|
|
16
|
+
2021-11-09T10:04:50.580Z info: sqlite-connector connections are ready
|
|
17
|
+
2021-11-09T10:04:50.580Z info: postgresql-connector connections are ready
|
|
18
|
+
2021-11-09T10:04:50.580Z info: mqtt-connector connections are ready
|
|
19
|
+
2021-11-09T10:04:50.580Z info: mssql-connector connections are ready
|
|
20
|
+
2021-11-09T10:04:50.580Z info: oracle-connector connections are ready
|
|
21
|
+
2021-11-09T10:04:50.580Z info: socket servers are ready
|
|
22
|
+
2021-11-09T10:04:50.581Z info: All connector for 'echo-back-server' ready
|
|
23
|
+
2021-11-09T10:04:50.581Z info: All connector for 'echo-back' ready
|
|
24
|
+
2021-11-09T10:04:50.581Z info: All connector for 'http-connector' ready
|
|
25
|
+
2021-11-09T10:04:50.589Z info: All connector for 'graphql-connector' ready
|
|
26
|
+
2021-11-09T10:04:50.599Z info: All connector for 'sqlite-connector' ready
|
|
27
|
+
2021-11-09T10:04:50.599Z info: All connector for 'postgresql-connector' ready
|
|
28
|
+
2021-11-09T10:04:50.599Z info: All connector for 'mqtt-connector' ready
|
|
29
|
+
2021-11-09T10:04:50.599Z info: All connector for 'mssql-connector' ready
|
|
30
|
+
2021-11-09T10:04:50.599Z info: All connector for 'oracle-connector' ready
|
|
31
|
+
2021-11-09T10:04:50.599Z info: All connector for 'socket-server' ready
|
|
32
|
+
2021-11-09T10:04:50.599Z info: ConnectionManager initialization done:
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
2021-11-10T14:31:48.941Z info: Initializing ConnectionManager...
|
|
2
|
+
2021-11-10T14:31:48.944Z info: Connector 'echo-back-server' started to ready
|
|
3
|
+
2021-11-10T14:31:48.944Z info: Connector 'echo-back' started to ready
|
|
4
|
+
2021-11-10T14:31:48.944Z info: Connector 'http-connector' started to ready
|
|
5
|
+
2021-11-10T14:31:48.944Z info: Connector 'graphql-connector' started to ready
|
|
6
|
+
2021-11-10T14:31:48.944Z info: Connector 'sqlite-connector' started to ready
|
|
7
|
+
2021-11-10T14:31:48.945Z info: Connector 'postgresql-connector' started to ready
|
|
8
|
+
2021-11-10T14:31:48.945Z info: Connector 'mqtt-connector' started to ready
|
|
9
|
+
2021-11-10T14:31:48.945Z info: Connector 'mssql-connector' started to ready
|
|
10
|
+
2021-11-10T14:31:48.945Z info: Connector 'oracle-connector' started to ready
|
|
11
|
+
2021-11-10T14:31:48.946Z info: Connector 'socket-server' started to ready
|
|
12
|
+
2021-11-10T14:31:48.946Z info: echo-back-servers are ready
|
|
13
|
+
2021-11-10T14:31:48.946Z info: echo-back connections are ready
|
|
14
|
+
2021-11-10T14:31:48.946Z info: http-connector connections are ready
|
|
15
|
+
2021-11-10T14:31:48.946Z info: graphql-connector connections are ready
|
|
16
|
+
2021-11-10T14:31:48.946Z info: sqlite-connector connections are ready
|
|
17
|
+
2021-11-10T14:31:48.946Z info: postgresql-connector connections are ready
|
|
18
|
+
2021-11-10T14:31:48.946Z info: mqtt-connector connections are ready
|
|
19
|
+
2021-11-10T14:31:48.946Z info: mssql-connector connections are ready
|
|
20
|
+
2021-11-10T14:31:48.946Z info: oracle-connector connections are ready
|
|
21
|
+
2021-11-10T14:31:48.946Z info: socket servers are ready
|
|
22
|
+
2021-11-10T14:31:48.947Z info: All connector for 'echo-back-server' ready
|
|
23
|
+
2021-11-10T14:31:48.947Z info: All connector for 'echo-back' ready
|
|
24
|
+
2021-11-10T14:31:48.947Z info: All connector for 'http-connector' ready
|
|
25
|
+
2021-11-10T14:31:48.947Z info: All connector for 'graphql-connector' ready
|
|
26
|
+
2021-11-10T14:31:48.947Z info: All connector for 'sqlite-connector' ready
|
|
27
|
+
2021-11-10T14:31:48.947Z info: All connector for 'postgresql-connector' ready
|
|
28
|
+
2021-11-10T14:31:48.947Z info: All connector for 'mqtt-connector' ready
|
|
29
|
+
2021-11-10T14:31:48.947Z info: All connector for 'mssql-connector' ready
|
|
30
|
+
2021-11-10T14:31:48.947Z info: All connector for 'oracle-connector' ready
|
|
31
|
+
2021-11-10T14:31:48.947Z info: All connector for 'socket-server' ready
|
|
32
|
+
2021-11-10T14:31:48.947Z info: ConnectionManager initialization done:
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
2021-11-13T12:43:40.492Z info: Initializing ConnectionManager...
|
|
2
|
+
2021-11-13T12:43:40.497Z info: Connector 'echo-back-server' started to ready
|
|
3
|
+
2021-11-13T12:43:40.500Z info: Connector 'echo-back' started to ready
|
|
4
|
+
2021-11-13T12:43:40.500Z info: Connector 'http-connector' started to ready
|
|
5
|
+
2021-11-13T12:43:40.500Z info: Connector 'graphql-connector' started to ready
|
|
6
|
+
2021-11-13T12:43:40.500Z info: Connector 'sqlite-connector' started to ready
|
|
7
|
+
2021-11-13T12:43:40.501Z info: Connector 'postgresql-connector' started to ready
|
|
8
|
+
2021-11-13T12:43:40.501Z info: Connector 'mqtt-connector' started to ready
|
|
9
|
+
2021-11-13T12:43:40.501Z info: Connector 'mssql-connector' started to ready
|
|
10
|
+
2021-11-13T12:43:40.501Z info: Connector 'oracle-connector' started to ready
|
|
11
|
+
2021-11-13T12:43:40.501Z info: Connector 'socket-server' started to ready
|
|
12
|
+
2021-11-13T12:43:40.502Z info: echo-back-servers are ready
|
|
13
|
+
2021-11-13T12:43:40.502Z info: echo-back connections are ready
|
|
14
|
+
2021-11-13T12:43:40.502Z info: http-connector connections are ready
|
|
15
|
+
2021-11-13T12:43:40.502Z info: graphql-connector connections are ready
|
|
16
|
+
2021-11-13T12:43:40.503Z info: sqlite-connector connections are ready
|
|
17
|
+
2021-11-13T12:43:40.503Z info: postgresql-connector connections are ready
|
|
18
|
+
2021-11-13T12:43:40.504Z info: mqtt-connector connections are ready
|
|
19
|
+
2021-11-13T12:43:40.504Z info: mssql-connector connections are ready
|
|
20
|
+
2021-11-13T12:43:40.504Z info: oracle-connector connections are ready
|
|
21
|
+
2021-11-13T12:43:40.504Z info: socket servers are ready
|
|
22
|
+
2021-11-13T12:43:40.505Z info: All connector for 'echo-back-server' ready
|
|
23
|
+
2021-11-13T12:43:40.505Z info: All connector for 'echo-back' ready
|
|
24
|
+
2021-11-13T12:43:40.505Z info: All connector for 'http-connector' ready
|
|
25
|
+
2021-11-13T12:43:40.505Z info: All connector for 'graphql-connector' ready
|
|
26
|
+
2021-11-13T12:43:40.505Z info: All connector for 'sqlite-connector' ready
|
|
27
|
+
2021-11-13T12:43:40.505Z info: All connector for 'postgresql-connector' ready
|
|
28
|
+
2021-11-13T12:43:40.505Z info: All connector for 'mqtt-connector' ready
|
|
29
|
+
2021-11-13T12:43:40.505Z info: All connector for 'mssql-connector' ready
|
|
30
|
+
2021-11-13T12:43:40.505Z info: All connector for 'oracle-connector' ready
|
|
31
|
+
2021-11-13T12:43:40.505Z info: All connector for 'socket-server' ready
|
|
32
|
+
2021-11-13T12:43:40.505Z info: ConnectionManager initialization done:
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
2021-11-15T14:47:29.954Z info: Initializing ConnectionManager...
|
|
2
|
+
2021-11-15T14:47:29.954Z info: Connector 'echo-back-server' started to ready
|
|
3
|
+
2021-11-15T14:47:29.955Z info: Connector 'echo-back' started to ready
|
|
4
|
+
2021-11-15T14:47:29.957Z info: Connector 'http-connector' started to ready
|
|
5
|
+
2021-11-15T14:47:29.957Z info: Connector 'graphql-connector' started to ready
|
|
6
|
+
2021-11-15T14:47:29.958Z info: Connector 'sqlite-connector' started to ready
|
|
7
|
+
2021-11-15T14:47:29.958Z info: Connector 'postgresql-connector' started to ready
|
|
8
|
+
2021-11-15T14:47:29.958Z info: Connector 'mqtt-connector' started to ready
|
|
9
|
+
2021-11-15T14:47:29.958Z info: Connector 'mssql-connector' started to ready
|
|
10
|
+
2021-11-15T14:47:29.959Z info: Connector 'oracle-connector' started to ready
|
|
11
|
+
2021-11-15T14:47:29.961Z info: Connector 'socket-server' started to ready
|
|
12
|
+
2021-11-15T14:47:29.961Z info: echo-back-servers are ready
|
|
13
|
+
2021-11-15T14:47:29.961Z info: echo-back connections are ready
|
|
14
|
+
2021-11-15T14:47:29.961Z info: http-connector connections are ready
|
|
15
|
+
2021-11-15T14:47:29.961Z info: graphql-connector connections are ready
|
|
16
|
+
2021-11-15T14:47:29.961Z info: sqlite-connector connections are ready
|
|
17
|
+
2021-11-15T14:47:29.961Z info: postgresql-connector connections are ready
|
|
18
|
+
2021-11-15T14:47:29.961Z info: mqtt-connector connections are ready
|
|
19
|
+
2021-11-15T14:47:29.961Z info: mssql-connector connections are ready
|
|
20
|
+
2021-11-15T14:47:29.962Z info: oracle-connector connections are ready
|
|
21
|
+
2021-11-15T14:47:29.962Z info: socket servers are ready
|
|
22
|
+
2021-11-15T14:47:29.962Z info: All connector for 'echo-back-server' ready
|
|
23
|
+
2021-11-15T14:47:29.962Z info: All connector for 'echo-back' ready
|
|
24
|
+
2021-11-15T14:47:29.962Z info: All connector for 'http-connector' ready
|
|
25
|
+
2021-11-15T14:47:29.962Z info: All connector for 'graphql-connector' ready
|
|
26
|
+
2021-11-15T14:47:29.962Z info: All connector for 'sqlite-connector' ready
|
|
27
|
+
2021-11-15T14:47:29.962Z info: All connector for 'postgresql-connector' ready
|
|
28
|
+
2021-11-15T14:47:29.962Z info: All connector for 'mqtt-connector' ready
|
|
29
|
+
2021-11-15T14:47:29.962Z info: All connector for 'mssql-connector' ready
|
|
30
|
+
2021-11-15T14:47:29.962Z info: All connector for 'oracle-connector' ready
|
|
31
|
+
2021-11-15T14:47:29.962Z info: All connector for 'socket-server' ready
|
|
32
|
+
2021-11-15T14:47:29.962Z info: ConnectionManager initialization done:
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hatiolab/things-scene",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.13",
|
|
4
4
|
"description": "2D graphic library",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"module": "things-scene.mjs",
|
|
7
7
|
"jsnext:main": "things-scene.mjs",
|
|
8
8
|
"browser": "things-scene.mjs",
|
|
9
|
+
"types": "types/index.d.ts",
|
|
9
10
|
"directories": {
|
|
10
11
|
"doc": "docs",
|
|
11
12
|
"test": "test"
|
|
@@ -25,10 +26,10 @@
|
|
|
25
26
|
"serve": "things-factory",
|
|
26
27
|
"serve:dev": "things-factory-dev",
|
|
27
28
|
"serve:simple-http-server": "webpack-dev-server --config webpack.config.dev.js --hot --inline --host 0.0.0.0",
|
|
28
|
-
"build": "webpack && rollup -c",
|
|
29
|
+
"build": "tsc && webpack && rollup -c",
|
|
29
30
|
"build:client": "npm run clean:client && webpack --config node_modules/@things-factory/shell/webpack.config.js",
|
|
30
31
|
"clean:client": "rm -rf dist-client",
|
|
31
|
-
"prepublish": "webpack && rollup -c",
|
|
32
|
+
"prepublish": "tsc && webpack && rollup -c",
|
|
32
33
|
"migration": "things-factory-migration",
|
|
33
34
|
"prettify": "prettier --write \"{src,samples,test}/**/*.{js,css,html}\""
|
|
34
35
|
},
|
|
@@ -46,7 +47,7 @@
|
|
|
46
47
|
"@rollup/plugin-commonjs": "^17.0.0",
|
|
47
48
|
"@rollup/plugin-node-resolve": "^11.0.1",
|
|
48
49
|
"@things-factory/builder": "^3.6.0",
|
|
49
|
-
"@things-factory/operato-board": "^3.6.
|
|
50
|
+
"@things-factory/operato-board": "^3.6.54",
|
|
50
51
|
"atob": "^2.1.2",
|
|
51
52
|
"babel-eslint": "^10.1.0",
|
|
52
53
|
"babel-jest": "^26.6.3",
|
|
@@ -63,6 +64,7 @@
|
|
|
63
64
|
"rollup-plugin-terser": "^7.0.2",
|
|
64
65
|
"should": "^13.2.3",
|
|
65
66
|
"systemjs": "^6.8.3",
|
|
67
|
+
"typescript": "^4.5.2",
|
|
66
68
|
"webpack": "^4.41.0",
|
|
67
69
|
"webpack-cli": "^3.3.0",
|
|
68
70
|
"webpack-dev-server": "^3.2.1"
|