@operato/scene-visualizer 1.2.62 → 1.2.70

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 CHANGED
@@ -3,6 +3,31 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.2.70](https://github.com/things-scene/operato-scene/compare/v1.2.69...v1.2.70) (2023-10-06)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * upgrade three@0.157.0 ([cb6eaf5](https://github.com/things-scene/operato-scene/commit/cb6eaf519d10ba60b0d9aa3ea4aa46e684e3acc2))
12
+
13
+
14
+
15
+ ## [1.2.66](https://github.com/things-scene/operato-scene/compare/v1.2.65...v1.2.66) (2023-09-14)
16
+
17
+ **Note:** Version bump only for package @operato/scene-visualizer
18
+
19
+
20
+
21
+
22
+
23
+ ## [1.2.65](https://github.com/things-scene/operato-scene/compare/v1.2.64...v1.2.65) (2023-09-14)
24
+
25
+ **Note:** Version bump only for package @operato/scene-visualizer
26
+
27
+
28
+
29
+
30
+
6
31
  ## [1.2.62](https://github.com/things-scene/operato-scene/compare/v1.2.61...v1.2.62) (2023-09-11)
7
32
 
8
33
  **Note:** Version bump only for package @operato/scene-visualizer
package/db.sqlite CHANGED
Binary file
package/dist/banner.d.ts CHANGED
@@ -3,8 +3,8 @@ import { Shape } from '@hatiolab/things-scene';
3
3
  import { RealObject } from './threed/real-object';
4
4
  export declare class Banner3D extends RealObject {
5
5
  build(): void;
6
- createCube(w: number, h: number, d: number): THREE.Mesh<THREE.BoxGeometry, THREE.MeshStandardMaterial>;
7
- createTextureBoard(w: number, h: number): THREE.Mesh<THREE.PlaneGeometry, THREE.MeshStandardMaterial>;
6
+ createCube(w: number, h: number, d: number): THREE.Mesh<THREE.BoxGeometry, THREE.MeshStandardMaterial, THREE.Object3DEventMap>;
7
+ createTextureBoard(w: number, h: number): THREE.Mesh<THREE.PlaneGeometry, THREE.MeshStandardMaterial, THREE.Object3DEventMap>;
8
8
  }
9
9
  declare const Banner_base: typeof Shape;
10
10
  export declare class Banner extends Banner_base {
package/dist/camera.d.ts CHANGED
@@ -4,7 +4,7 @@ import { RealObject } from './threed/real-object';
4
4
  export declare class Camera3D extends RealObject<THREE.Mesh> {
5
5
  camera?: THREE.PerspectiveCamera;
6
6
  helper?: THREE.CameraHelper;
7
- protected getObject3dInstance(): THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[]>;
7
+ protected getObject3dInstance(): THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>;
8
8
  updateCamera(): void;
9
9
  build(): void;
10
10
  }
package/dist/desk.d.ts CHANGED
@@ -6,8 +6,8 @@ export declare class Desk3D extends RealObject {
6
6
  get legThickness(): number;
7
7
  get margin(): number;
8
8
  build(): void;
9
- createDeskLegs(w: number, h: number, d: number): THREE.Group;
10
- createDeskBoard(w: number, h: number): THREE.Mesh<THREE.BoxGeometry, THREE.MeshStandardMaterial>;
9
+ createDeskLegs(w: number, h: number, d: number): THREE.Group<THREE.Object3DEventMap>;
10
+ createDeskBoard(w: number, h: number): THREE.Mesh<THREE.BoxGeometry, THREE.MeshStandardMaterial, THREE.Object3DEventMap>;
11
11
  }
12
12
  declare const Desk_base: typeof Shape;
13
13
  export declare class Desk extends Desk_base {
package/dist/stock.d.ts CHANGED
@@ -10,7 +10,7 @@ export declare class Stock extends RealObject<THREE.Mesh> {
10
10
  _focusedAt?: number;
11
11
  model: Model;
12
12
  constructor(component: Component, model: Model);
13
- protected getObject3dInstance(): THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[]>;
13
+ protected getObject3dInstance(): THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>;
14
14
  getMaterial(index: number): THREE.Material;
15
15
  get visualizer(): Visualizer | undefined;
16
16
  get stockMaterials(): THREE.Material[];
@@ -63,7 +63,7 @@ export declare class ThreeContainer extends Container implements ThreeDimensiona
63
63
  get layout(): import("@hatiolab/things-scene").LAYOUT;
64
64
  get nature(): ComponentNature;
65
65
  getObjectByRaycast(): THREE.Object3D | undefined;
66
- getObjectsByRaycast(): THREE.Intersection<THREE.Object3D<THREE.Event>>[] | undefined;
66
+ getObjectsByRaycast(): THREE.Intersection<THREE.Object3D<THREE.Object3DEventMap>>[] | undefined;
67
67
  _showWebglNoSupportText(context: CanvasRenderingContext2D): void;
68
68
  onchange(after: Properties, before: Properties): void;
69
69
  onmousedown(e: MouseEvent): void;
@@ -63,7 +63,7 @@ export declare class ThreeSpace extends Container implements ThreeDimensionalCon
63
63
  get layout(): import("@hatiolab/things-scene").LAYOUT;
64
64
  get nature(): ComponentNature;
65
65
  getObjectByRaycast(): THREE.Object3D | undefined;
66
- getObjectsByRaycast(): THREE.Intersection<THREE.Object3D<THREE.Event>>[] | undefined;
66
+ getObjectsByRaycast(): THREE.Intersection<THREE.Object3D<THREE.Object3DEventMap>>[] | undefined;
67
67
  _showWebglNoSupportText(context: CanvasRenderingContext2D): void;
68
68
  onchange(after: Properties, before: Properties): void;
69
69
  onmousedown(e: MouseEvent): void;
@@ -7,6 +7,6 @@ export declare class RealObjectCamera extends RealObjectMesh {
7
7
  createCamera(): THREE.PerspectiveCamera;
8
8
  updateCamera(): void;
9
9
  build(): void;
10
- clear(): THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[]>;
10
+ clear(): THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>;
11
11
  buildGeometry(): void;
12
12
  }
@@ -11,8 +11,8 @@ export declare class RealObjectExtrude extends RealObject {
11
11
  build(): void;
12
12
  createGeometry(shape: THREE.Shape): THREE.BufferGeometry;
13
13
  createMainMaterial(): THREE.MeshStandardMaterial;
14
- createMainMesh(geometry: THREE.BufferGeometry, material: THREE.Material): THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material>;
15
- createSideMesh(geometry: THREE.BufferGeometry, shape: THREE.Shape): THREE.Mesh<THREE.ExtrudeGeometry, THREE.MeshStandardMaterial>;
14
+ createMainMesh(geometry: THREE.BufferGeometry, material: THREE.Material): THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material, THREE.Object3DEventMap>;
15
+ createSideMesh(geometry: THREE.BufferGeometry, shape: THREE.Shape): THREE.Mesh<THREE.ExtrudeGeometry, THREE.MeshStandardMaterial, THREE.Object3DEventMap>;
16
16
  createTexture(): THREE.CanvasTexture;
17
17
  updateAlpha(): void;
18
18
  updateStrokeStyle(): void;
@@ -9,7 +9,7 @@ export declare class RealObjectGLTF extends RealObject {
9
9
  static get GLTFLoader(): GLTFLoader;
10
10
  build(): void;
11
11
  private gltfLoaded;
12
- clear(): THREE.Object3D<THREE.Event>;
12
+ clear(): THREE.Object3D<THREE.Object3DEventMap>;
13
13
  updateDimension(): void;
14
14
  updateSource(): void;
15
15
  onchange(after: Properties, before: Properties): void;
@@ -1,5 +1,5 @@
1
1
  import * as THREE from 'three';
2
2
  import { RealObject } from './real-object';
3
3
  export declare class RealObjectGroup extends RealObject<THREE.Group> {
4
- protected getObject3dInstance(): THREE.Group;
4
+ protected getObject3dInstance(): THREE.Group<THREE.Object3DEventMap>;
5
5
  }
@@ -1,12 +1,12 @@
1
1
  import * as THREE from 'three';
2
2
  import { RealObject } from './real-object';
3
3
  export declare abstract class RealObjectMesh extends RealObject<THREE.Mesh> {
4
- protected getObject3dInstance(): THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[]>;
4
+ protected getObject3dInstance(): THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>;
5
5
  build(): void;
6
6
  updateAlpha(): void;
7
7
  updateHidden(): void;
8
8
  updateFillStyle(): void;
9
9
  protected abstract buildGeometry(): void;
10
10
  buildMaterial(): void;
11
- clear(): THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[]>;
11
+ clear(): THREE.Mesh<THREE.BufferGeometry<THREE.NormalBufferAttributes>, THREE.Material | THREE.Material[], THREE.Object3DEventMap>;
12
12
  }
@@ -6,9 +6,19 @@
6
6
  "auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
7
7
  "files": [
8
8
  {
9
- "date": 1693801512951,
10
- "name": "logs/application-2023-09-04-13.log",
11
- "hash": "b92eee90c146364ed988056f3790673ab568119ccf2745e87bd07f6650095b90"
9
+ "date": 1696583286822,
10
+ "name": "logs/application-2023-10-06-18.log",
11
+ "hash": "d55097de8199fbcc06fff4bf3c4180e4c264a26af11a28da574dac5bfe8d4151"
12
+ },
13
+ {
14
+ "date": 1696589449948,
15
+ "name": "logs/application-2023-10-06-19.log",
16
+ "hash": "67c3e89607a8ae0505c5e9c15a50d19be886e26b88559387334133c65a4769fc"
17
+ },
18
+ {
19
+ "date": 1696590211739,
20
+ "name": "logs/application-2023-10-06-20.log",
21
+ "hash": "7010c9d659b92e41b63bef688e17ecdd8579f0a601fa2579b31ca0788c462ec1"
12
22
  }
13
23
  ],
14
24
  "hashType": "sha256"
@@ -6,9 +6,19 @@
6
6
  "auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
7
7
  "files": [
8
8
  {
9
- "date": 1693801514012,
10
- "name": "logs/connections-2023-09-04-13.log",
11
- "hash": "57462d08eb477697c1f6cb0759ed4d8fd4fc5af1cd71c415fb2afb3d593ea348"
9
+ "date": 1696583287909,
10
+ "name": "logs/connections-2023-10-06-18.log",
11
+ "hash": "45bfa1f1557792c0f32a8bad1241ef8caea5716310e925474aa08f4ebfe43aa3"
12
+ },
13
+ {
14
+ "date": 1696589451269,
15
+ "name": "logs/connections-2023-10-06-19.log",
16
+ "hash": "f46a426443badf6a6afbc6dc9d5607847b9b1f6db0380bd74379f179135e4116"
17
+ },
18
+ {
19
+ "date": 1696590900635,
20
+ "name": "logs/connections-2023-10-06-20.log",
21
+ "hash": "4e5cef35937595702625fc22d8f63a3a447f80282cfc542a3aa6f67e66933c5d"
12
22
  }
13
23
  ],
14
24
  "hashType": "sha256"
@@ -0,0 +1,18 @@
1
+ 2023-10-06T18:08:07+09:00 info: File Storage is Ready.
2
+ 2023-10-06T18:08:08+09:00 error: oracledb module loading failed
3
+ 2023-10-06T18:08:08+09:00 error: oracledb module loading failed
4
+ 2023-10-06T18:08:09+09:00 info: Default DataSource established
5
+ 2023-10-06T18:08:10+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2023-10-06T18:08:10+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
+ 2023-10-06T18:15:33+09:00 info: File Storage is Ready.
8
+ 2023-10-06T18:15:33+09:00 error: oracledb module loading failed
9
+ 2023-10-06T18:15:33+09:00 error: oracledb module loading failed
10
+ 2023-10-06T18:15:34+09:00 info: Default DataSource established
11
+ 2023-10-06T18:15:35+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
12
+ 2023-10-06T18:15:35+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
13
+ 2023-10-06T18:40:18+09:00 info: File Storage is Ready.
14
+ 2023-10-06T18:40:18+09:00 error: oracledb module loading failed
15
+ 2023-10-06T18:40:19+09:00 error: oracledb module loading failed
16
+ 2023-10-06T18:40:19+09:00 info: Default DataSource established
17
+ 2023-10-06T18:40:20+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
18
+ 2023-10-06T18:40:20+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,13 @@
1
+ 2023-10-06T19:50:50+09:00 info: File Storage is Ready.
2
+ 2023-10-06T19:50:51+09:00 error: oracledb module loading failed
3
+ 2023-10-06T19:50:51+09:00 error: oracledb module loading failed
4
+ 2023-10-06T19:50:52+09:00 info: Default DataSource established
5
+ 2023-10-06T19:50:53+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2023-10-06T19:50:53+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
7
+ 2023-10-06T19:53:24+09:00 error: thumbnail not found
8
+ 2023-10-06T19:53:24+09:00 error: thumbnail not found
9
+ 2023-10-06T19:53:24+09:00 error: thumbnail not found
10
+ 2023-10-06T19:53:24+09:00 error: thumbnail not found
11
+ 2023-10-06T19:53:24+09:00 error: thumbnail not found
12
+ 2023-10-06T19:53:24+09:00 error: thumbnail not found
13
+ 2023-10-06T19:53:24+09:00 error: thumbnail not found
@@ -0,0 +1,6 @@
1
+ 2023-10-06T20:15:00+09:00 info: File Storage is Ready.
2
+ 2023-10-06T20:15:00+09:00 error: oracledb module loading failed
3
+ 2023-10-06T20:15:00+09:00 error: oracledb module loading failed
4
+ 2023-10-06T20:15:02+09:00 info: Default DataSource established
5
+ 2023-10-06T20:15:03+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
6
+ 2023-10-06T20:15:03+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
@@ -0,0 +1,114 @@
1
+ 2023-10-06T18:08:10+09:00 info: Initializing ConnectionManager...
2
+ 2023-10-06T18:08:10+09:00 info: Connector 'echo-back-server' started to ready
3
+ 2023-10-06T18:08:10+09:00 info: Connector 'echo-back' started to ready
4
+ 2023-10-06T18:08:10+09:00 info: Connector 'http-connector' started to ready
5
+ 2023-10-06T18:08:10+09:00 info: Connector 'graphql-connector' started to ready
6
+ 2023-10-06T18:08:10+09:00 info: Connector 'sqlite-connector' started to ready
7
+ 2023-10-06T18:08:10+09:00 info: Connector 'postgresql-connector' started to ready
8
+ 2023-10-06T18:08:10+09:00 info: Connector 'mqtt-connector' started to ready
9
+ 2023-10-06T18:08:10+09:00 info: Connector 'mssql-connector' started to ready
10
+ 2023-10-06T18:08:10+09:00 info: Connector 'oracle-connector' started to ready
11
+ 2023-10-06T18:08:10+09:00 info: Connector 'mysql-connector' started to ready
12
+ 2023-10-06T18:08:10+09:00 info: Connector 'socket-server' started to ready
13
+ 2023-10-06T18:08:10+09:00 info: Connector 'msgraph-connector' started to ready
14
+ 2023-10-06T18:08:10+09:00 info: echo-back-servers are ready
15
+ 2023-10-06T18:08:10+09:00 info: echo-back connections are ready
16
+ 2023-10-06T18:08:10+09:00 info: http-connector connections are ready
17
+ 2023-10-06T18:08:10+09:00 info: graphql-connector connections are ready
18
+ 2023-10-06T18:08:10+09:00 info: sqlite-connector connections are ready
19
+ 2023-10-06T18:08:10+09:00 info: postgresql-connector connections are ready
20
+ 2023-10-06T18:08:10+09:00 info: mqtt-connector connections are ready
21
+ 2023-10-06T18:08:10+09:00 info: mssql-connector connections are ready
22
+ 2023-10-06T18:08:10+09:00 info: oracle-connector connections are ready
23
+ 2023-10-06T18:08:10+09:00 info: mysql-connector connections are ready
24
+ 2023-10-06T18:08:10+09:00 info: socket servers are ready
25
+ 2023-10-06T18:08:10+09:00 info: msgraph-connector connections are ready
26
+ 2023-10-06T18:08:10+09:00 info: All connector for 'echo-back-server' ready
27
+ 2023-10-06T18:08:10+09:00 info: All connector for 'echo-back' ready
28
+ 2023-10-06T18:08:10+09:00 info: All connector for 'http-connector' ready
29
+ 2023-10-06T18:08:10+09:00 info: All connector for 'graphql-connector' ready
30
+ 2023-10-06T18:08:10+09:00 info: All connector for 'sqlite-connector' ready
31
+ 2023-10-06T18:08:10+09:00 info: All connector for 'postgresql-connector' ready
32
+ 2023-10-06T18:08:10+09:00 info: All connector for 'mqtt-connector' ready
33
+ 2023-10-06T18:08:10+09:00 info: All connector for 'mssql-connector' ready
34
+ 2023-10-06T18:08:10+09:00 info: All connector for 'oracle-connector' ready
35
+ 2023-10-06T18:08:10+09:00 info: All connector for 'mysql-connector' ready
36
+ 2023-10-06T18:08:10+09:00 info: All connector for 'socket-server' ready
37
+ 2023-10-06T18:08:10+09:00 info: All connector for 'msgraph-connector' ready
38
+ 2023-10-06T18:08:10+09:00 info: ConnectionManager initialization done:
39
+ 2023-10-06T18:15:35+09:00 info: Initializing ConnectionManager...
40
+ 2023-10-06T18:15:35+09:00 info: Connector 'echo-back-server' started to ready
41
+ 2023-10-06T18:15:35+09:00 info: Connector 'echo-back' started to ready
42
+ 2023-10-06T18:15:35+09:00 info: Connector 'http-connector' started to ready
43
+ 2023-10-06T18:15:35+09:00 info: Connector 'graphql-connector' started to ready
44
+ 2023-10-06T18:15:35+09:00 info: Connector 'sqlite-connector' started to ready
45
+ 2023-10-06T18:15:35+09:00 info: Connector 'postgresql-connector' started to ready
46
+ 2023-10-06T18:15:35+09:00 info: Connector 'mqtt-connector' started to ready
47
+ 2023-10-06T18:15:35+09:00 info: Connector 'mssql-connector' started to ready
48
+ 2023-10-06T18:15:35+09:00 info: Connector 'oracle-connector' started to ready
49
+ 2023-10-06T18:15:35+09:00 info: Connector 'mysql-connector' started to ready
50
+ 2023-10-06T18:15:35+09:00 info: Connector 'socket-server' started to ready
51
+ 2023-10-06T18:15:35+09:00 info: Connector 'msgraph-connector' started to ready
52
+ 2023-10-06T18:15:35+09:00 info: echo-back-servers are ready
53
+ 2023-10-06T18:15:35+09:00 info: echo-back connections are ready
54
+ 2023-10-06T18:15:35+09:00 info: http-connector connections are ready
55
+ 2023-10-06T18:15:35+09:00 info: graphql-connector connections are ready
56
+ 2023-10-06T18:15:35+09:00 info: sqlite-connector connections are ready
57
+ 2023-10-06T18:15:35+09:00 info: postgresql-connector connections are ready
58
+ 2023-10-06T18:15:35+09:00 info: mqtt-connector connections are ready
59
+ 2023-10-06T18:15:35+09:00 info: mssql-connector connections are ready
60
+ 2023-10-06T18:15:35+09:00 info: oracle-connector connections are ready
61
+ 2023-10-06T18:15:35+09:00 info: mysql-connector connections are ready
62
+ 2023-10-06T18:15:35+09:00 info: socket servers are ready
63
+ 2023-10-06T18:15:35+09:00 info: msgraph-connector connections are ready
64
+ 2023-10-06T18:15:35+09:00 info: All connector for 'echo-back-server' ready
65
+ 2023-10-06T18:15:35+09:00 info: All connector for 'echo-back' ready
66
+ 2023-10-06T18:15:35+09:00 info: All connector for 'http-connector' ready
67
+ 2023-10-06T18:15:35+09:00 info: All connector for 'graphql-connector' ready
68
+ 2023-10-06T18:15:35+09:00 info: All connector for 'sqlite-connector' ready
69
+ 2023-10-06T18:15:35+09:00 info: All connector for 'postgresql-connector' ready
70
+ 2023-10-06T18:15:35+09:00 info: All connector for 'mqtt-connector' ready
71
+ 2023-10-06T18:15:35+09:00 info: All connector for 'mssql-connector' ready
72
+ 2023-10-06T18:15:35+09:00 info: All connector for 'oracle-connector' ready
73
+ 2023-10-06T18:15:35+09:00 info: All connector for 'mysql-connector' ready
74
+ 2023-10-06T18:15:35+09:00 info: All connector for 'socket-server' ready
75
+ 2023-10-06T18:15:35+09:00 info: All connector for 'msgraph-connector' ready
76
+ 2023-10-06T18:15:35+09:00 info: ConnectionManager initialization done:
77
+ 2023-10-06T18:40:20+09:00 info: Initializing ConnectionManager...
78
+ 2023-10-06T18:40:20+09:00 info: Connector 'echo-back-server' started to ready
79
+ 2023-10-06T18:40:20+09:00 info: Connector 'echo-back' started to ready
80
+ 2023-10-06T18:40:20+09:00 info: Connector 'http-connector' started to ready
81
+ 2023-10-06T18:40:20+09:00 info: Connector 'graphql-connector' started to ready
82
+ 2023-10-06T18:40:20+09:00 info: Connector 'sqlite-connector' started to ready
83
+ 2023-10-06T18:40:20+09:00 info: Connector 'postgresql-connector' started to ready
84
+ 2023-10-06T18:40:20+09:00 info: Connector 'mqtt-connector' started to ready
85
+ 2023-10-06T18:40:20+09:00 info: Connector 'mssql-connector' started to ready
86
+ 2023-10-06T18:40:20+09:00 info: Connector 'oracle-connector' started to ready
87
+ 2023-10-06T18:40:20+09:00 info: Connector 'mysql-connector' started to ready
88
+ 2023-10-06T18:40:20+09:00 info: Connector 'socket-server' started to ready
89
+ 2023-10-06T18:40:20+09:00 info: Connector 'msgraph-connector' started to ready
90
+ 2023-10-06T18:40:20+09:00 info: echo-back-servers are ready
91
+ 2023-10-06T18:40:20+09:00 info: echo-back connections are ready
92
+ 2023-10-06T18:40:20+09:00 info: http-connector connections are ready
93
+ 2023-10-06T18:40:20+09:00 info: graphql-connector connections are ready
94
+ 2023-10-06T18:40:20+09:00 info: sqlite-connector connections are ready
95
+ 2023-10-06T18:40:20+09:00 info: postgresql-connector connections are ready
96
+ 2023-10-06T18:40:20+09:00 info: mqtt-connector connections are ready
97
+ 2023-10-06T18:40:20+09:00 info: mssql-connector connections are ready
98
+ 2023-10-06T18:40:20+09:00 info: oracle-connector connections are ready
99
+ 2023-10-06T18:40:20+09:00 info: mysql-connector connections are ready
100
+ 2023-10-06T18:40:20+09:00 info: socket servers are ready
101
+ 2023-10-06T18:40:20+09:00 info: msgraph-connector connections are ready
102
+ 2023-10-06T18:40:20+09:00 info: All connector for 'echo-back-server' ready
103
+ 2023-10-06T18:40:20+09:00 info: All connector for 'echo-back' ready
104
+ 2023-10-06T18:40:20+09:00 info: All connector for 'http-connector' ready
105
+ 2023-10-06T18:40:20+09:00 info: All connector for 'graphql-connector' ready
106
+ 2023-10-06T18:40:20+09:00 info: All connector for 'sqlite-connector' ready
107
+ 2023-10-06T18:40:20+09:00 info: All connector for 'postgresql-connector' ready
108
+ 2023-10-06T18:40:20+09:00 info: All connector for 'mqtt-connector' ready
109
+ 2023-10-06T18:40:20+09:00 info: All connector for 'mssql-connector' ready
110
+ 2023-10-06T18:40:20+09:00 info: All connector for 'oracle-connector' ready
111
+ 2023-10-06T18:40:20+09:00 info: All connector for 'mysql-connector' ready
112
+ 2023-10-06T18:40:20+09:00 info: All connector for 'socket-server' ready
113
+ 2023-10-06T18:40:20+09:00 info: All connector for 'msgraph-connector' ready
114
+ 2023-10-06T18:40:20+09:00 info: ConnectionManager initialization done:
@@ -0,0 +1,38 @@
1
+ 2023-10-06T19:50:53+09:00 info: Initializing ConnectionManager...
2
+ 2023-10-06T19:50:53+09:00 info: Connector 'echo-back-server' started to ready
3
+ 2023-10-06T19:50:53+09:00 info: Connector 'echo-back' started to ready
4
+ 2023-10-06T19:50:53+09:00 info: Connector 'http-connector' started to ready
5
+ 2023-10-06T19:50:53+09:00 info: Connector 'graphql-connector' started to ready
6
+ 2023-10-06T19:50:53+09:00 info: Connector 'sqlite-connector' started to ready
7
+ 2023-10-06T19:50:53+09:00 info: Connector 'postgresql-connector' started to ready
8
+ 2023-10-06T19:50:53+09:00 info: Connector 'mqtt-connector' started to ready
9
+ 2023-10-06T19:50:53+09:00 info: Connector 'mssql-connector' started to ready
10
+ 2023-10-06T19:50:53+09:00 info: Connector 'oracle-connector' started to ready
11
+ 2023-10-06T19:50:53+09:00 info: Connector 'mysql-connector' started to ready
12
+ 2023-10-06T19:50:53+09:00 info: Connector 'socket-server' started to ready
13
+ 2023-10-06T19:50:53+09:00 info: Connector 'msgraph-connector' started to ready
14
+ 2023-10-06T19:50:53+09:00 info: echo-back-servers are ready
15
+ 2023-10-06T19:50:53+09:00 info: echo-back connections are ready
16
+ 2023-10-06T19:50:53+09:00 info: http-connector connections are ready
17
+ 2023-10-06T19:50:53+09:00 info: graphql-connector connections are ready
18
+ 2023-10-06T19:50:53+09:00 info: sqlite-connector connections are ready
19
+ 2023-10-06T19:50:53+09:00 info: postgresql-connector connections are ready
20
+ 2023-10-06T19:50:53+09:00 info: mqtt-connector connections are ready
21
+ 2023-10-06T19:50:53+09:00 info: mssql-connector connections are ready
22
+ 2023-10-06T19:50:53+09:00 info: oracle-connector connections are ready
23
+ 2023-10-06T19:50:53+09:00 info: mysql-connector connections are ready
24
+ 2023-10-06T19:50:53+09:00 info: socket servers are ready
25
+ 2023-10-06T19:50:53+09:00 info: msgraph-connector connections are ready
26
+ 2023-10-06T19:50:53+09:00 info: All connector for 'echo-back-server' ready
27
+ 2023-10-06T19:50:53+09:00 info: All connector for 'echo-back' ready
28
+ 2023-10-06T19:50:53+09:00 info: All connector for 'http-connector' ready
29
+ 2023-10-06T19:50:53+09:00 info: All connector for 'graphql-connector' ready
30
+ 2023-10-06T19:50:53+09:00 info: All connector for 'sqlite-connector' ready
31
+ 2023-10-06T19:50:53+09:00 info: All connector for 'postgresql-connector' ready
32
+ 2023-10-06T19:50:53+09:00 info: All connector for 'mqtt-connector' ready
33
+ 2023-10-06T19:50:53+09:00 info: All connector for 'mssql-connector' ready
34
+ 2023-10-06T19:50:53+09:00 info: All connector for 'oracle-connector' ready
35
+ 2023-10-06T19:50:53+09:00 info: All connector for 'mysql-connector' ready
36
+ 2023-10-06T19:50:53+09:00 info: All connector for 'socket-server' ready
37
+ 2023-10-06T19:50:53+09:00 info: All connector for 'msgraph-connector' ready
38
+ 2023-10-06T19:50:53+09:00 info: ConnectionManager initialization done:
@@ -0,0 +1,38 @@
1
+ 2023-10-06T20:15:03+09:00 info: Initializing ConnectionManager...
2
+ 2023-10-06T20:15:03+09:00 info: Connector 'echo-back-server' started to ready
3
+ 2023-10-06T20:15:03+09:00 info: Connector 'echo-back' started to ready
4
+ 2023-10-06T20:15:03+09:00 info: Connector 'http-connector' started to ready
5
+ 2023-10-06T20:15:03+09:00 info: Connector 'graphql-connector' started to ready
6
+ 2023-10-06T20:15:03+09:00 info: Connector 'sqlite-connector' started to ready
7
+ 2023-10-06T20:15:03+09:00 info: Connector 'postgresql-connector' started to ready
8
+ 2023-10-06T20:15:03+09:00 info: Connector 'mqtt-connector' started to ready
9
+ 2023-10-06T20:15:03+09:00 info: Connector 'mssql-connector' started to ready
10
+ 2023-10-06T20:15:03+09:00 info: Connector 'oracle-connector' started to ready
11
+ 2023-10-06T20:15:03+09:00 info: Connector 'mysql-connector' started to ready
12
+ 2023-10-06T20:15:03+09:00 info: Connector 'socket-server' started to ready
13
+ 2023-10-06T20:15:03+09:00 info: Connector 'msgraph-connector' started to ready
14
+ 2023-10-06T20:15:03+09:00 info: echo-back-servers are ready
15
+ 2023-10-06T20:15:03+09:00 info: echo-back connections are ready
16
+ 2023-10-06T20:15:03+09:00 info: http-connector connections are ready
17
+ 2023-10-06T20:15:03+09:00 info: graphql-connector connections are ready
18
+ 2023-10-06T20:15:03+09:00 info: sqlite-connector connections are ready
19
+ 2023-10-06T20:15:03+09:00 info: postgresql-connector connections are ready
20
+ 2023-10-06T20:15:03+09:00 info: mqtt-connector connections are ready
21
+ 2023-10-06T20:15:03+09:00 info: mssql-connector connections are ready
22
+ 2023-10-06T20:15:03+09:00 info: oracle-connector connections are ready
23
+ 2023-10-06T20:15:03+09:00 info: mysql-connector connections are ready
24
+ 2023-10-06T20:15:03+09:00 info: socket servers are ready
25
+ 2023-10-06T20:15:03+09:00 info: msgraph-connector connections are ready
26
+ 2023-10-06T20:15:03+09:00 info: All connector for 'echo-back-server' ready
27
+ 2023-10-06T20:15:03+09:00 info: All connector for 'echo-back' ready
28
+ 2023-10-06T20:15:03+09:00 info: All connector for 'http-connector' ready
29
+ 2023-10-06T20:15:03+09:00 info: All connector for 'graphql-connector' ready
30
+ 2023-10-06T20:15:03+09:00 info: All connector for 'sqlite-connector' ready
31
+ 2023-10-06T20:15:03+09:00 info: All connector for 'postgresql-connector' ready
32
+ 2023-10-06T20:15:03+09:00 info: All connector for 'mqtt-connector' ready
33
+ 2023-10-06T20:15:03+09:00 info: All connector for 'mssql-connector' ready
34
+ 2023-10-06T20:15:03+09:00 info: All connector for 'oracle-connector' ready
35
+ 2023-10-06T20:15:03+09:00 info: All connector for 'mysql-connector' ready
36
+ 2023-10-06T20:15:03+09:00 info: All connector for 'socket-server' ready
37
+ 2023-10-06T20:15:03+09:00 info: All connector for 'msgraph-connector' ready
38
+ 2023-10-06T20:15:03+09:00 info: ConnectionManager initialization done:
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/scene-visualizer",
3
3
  "description": "visualizer component for operato-scene",
4
4
  "author": "heartyoh",
5
- "version": "1.2.62",
5
+ "version": "1.2.70",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
8
8
  "license": "MIT",
@@ -29,14 +29,14 @@
29
29
  "dependencies": {
30
30
  "@hatiolab/things-scene": "^3.2.0",
31
31
  "lit": "^2.5.0",
32
- "three": "^0.152.2",
32
+ "three": "^0.157.0",
33
33
  "tinycolor2": "^1.6.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@hatiolab/prettier-config": "^1.0.0",
37
37
  "@things-factory/builder": "^6.0.0",
38
38
  "@things-factory/operato-board": "^6.0.0",
39
- "@types/three": "^0.152.0",
39
+ "@types/three": "^0.156.0",
40
40
  "@types/tinycolor2": "^1.4.3",
41
41
  "@typescript-eslint/eslint-plugin": "^4.33.0",
42
42
  "@typescript-eslint/parser": "^4.33.0",
@@ -62,5 +62,5 @@
62
62
  "prettier --write"
63
63
  ]
64
64
  },
65
- "gitHead": "be3109453bba40b787b5992bd2b8359215bee1a1"
65
+ "gitHead": "7e5827e465c5f4492a6a47c1be202adb629f0171"
66
66
  }