@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.
Files changed (186) hide show
  1. package/db.sqlite +0 -0
  2. package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +3 -3
  3. package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +21 -6
  4. package/logs/application-2021-11-15-23.log +4 -0
  5. package/logs/connections-2021-11-08-22.log +32 -0
  6. package/logs/connections-2021-11-09-19.log +32 -0
  7. package/logs/connections-2021-11-10-23.log +32 -0
  8. package/logs/connections-2021-11-13-21.log +32 -0
  9. package/logs/connections-2021-11-15-23.log +32 -0
  10. package/package.json +6 -4
  11. package/things-scene-ie.js +1 -1
  12. package/things-scene-min.js +1 -1
  13. package/things-scene.mjs +1 -1
  14. package/tsconfig.json +9 -0
  15. package/types/animation/animate.d.ts +4 -0
  16. package/types/animation/animations/animation.d.ts +14 -0
  17. package/types/animation/animations/fade.d.ts +4 -0
  18. package/types/animation/animations/heartbeat.d.ts +4 -0
  19. package/types/animation/animations/moving.d.ts +4 -0
  20. package/types/animation/animations/outline.d.ts +10 -0
  21. package/types/animation/animations/rotation.d.ts +4 -0
  22. package/types/animation/animations/vibration.d.ts +4 -0
  23. package/types/animation/compile.d.ts +1 -0
  24. package/types/animation/delta.d.ts +19 -0
  25. package/types/animation/index.d.ts +1 -0
  26. package/types/command/command-change.d.ts +7 -0
  27. package/types/command/command-migrate.d.ts +4 -0
  28. package/types/command/command.d.ts +5 -0
  29. package/types/command/snapshot-commander.d.ts +15 -0
  30. package/types/components/audio.d.ts +44 -0
  31. package/types/components/cloud.d.ts +3 -0
  32. package/types/components/component.d.ts +213 -0
  33. package/types/components/container-abstract.d.ts +48 -0
  34. package/types/components/container.d.ts +37 -0
  35. package/types/components/data/data-mapping.d.ts +15 -0
  36. package/types/components/data/data.d.ts +8 -0
  37. package/types/components/data/evaluator.d.ts +1 -0
  38. package/types/components/donut.d.ts +3 -0
  39. package/types/components/drawer/draw-image-pendable.d.ts +1 -0
  40. package/types/components/drawer/effect.d.ts +1 -0
  41. package/types/components/drawer/fill.d.ts +14 -0
  42. package/types/components/drawer/format.d.ts +1 -0
  43. package/types/components/drawer/line.d.ts +3 -0
  44. package/types/components/drawer/stroke.d.ts +1 -0
  45. package/types/components/drawer/text-wrapper.d.ts +10 -0
  46. package/types/components/drawer/text.d.ts +3 -0
  47. package/types/components/ellipse.d.ts +3 -0
  48. package/types/components/file/ondropfile.d.ts +1 -0
  49. package/types/components/fit/fit.d.ts +15 -0
  50. package/types/components/geometry/transcoord.d.ts +37 -0
  51. package/types/components/geometry/union.d.ts +6 -0
  52. package/types/components/gif/super-gif.d.ts +18 -0
  53. package/types/components/gif-view.d.ts +25 -0
  54. package/types/components/global-ref.d.ts +34 -0
  55. package/types/components/group.d.ts +15 -0
  56. package/types/components/html/elements.d.ts +2 -0
  57. package/types/components/html/fill.d.ts +1 -0
  58. package/types/components/html/reposition.d.ts +1 -0
  59. package/types/components/html/shadow.d.ts +1 -0
  60. package/types/components/html-overlay-container.d.ts +27 -0
  61. package/types/components/html-overlay-element.d.ts +25 -0
  62. package/types/components/image-view.d.ts +66 -0
  63. package/types/components/index.d.ts +31 -0
  64. package/types/components/info-window.d.ts +40 -0
  65. package/types/components/line.d.ts +16 -0
  66. package/types/components/local-ref.d.ts +46 -0
  67. package/types/components/mixins/data-source.d.ts +9 -0
  68. package/types/components/mixins/html-element.d.ts +23 -0
  69. package/types/components/mixins/move-handle.d.ts +11 -0
  70. package/types/components/mixins/rect-path.d.ts +12 -0
  71. package/types/components/mixins/value-holder.d.ts +18 -0
  72. package/types/components/mutater/bounds.d.ts +10 -0
  73. package/types/components/mutater/path.d.ts +5 -0
  74. package/types/components/outline/ellipse-outline.d.ts +1 -0
  75. package/types/components/outline/path-outline.d.ts +1 -0
  76. package/types/components/path.d.ts +3 -0
  77. package/types/components/polygon.d.ts +4 -0
  78. package/types/components/polyline.d.ts +4 -0
  79. package/types/components/popup.d.ts +47 -0
  80. package/types/components/rect.d.ts +35 -0
  81. package/types/components/retention/retention-manager.d.ts +8 -0
  82. package/types/components/root-container.d.ts +76 -0
  83. package/types/components/ruler.d.ts +15 -0
  84. package/types/components/shape.d.ts +22 -0
  85. package/types/components/star.d.ts +3 -0
  86. package/types/components/text/substitutor.d.ts +3 -0
  87. package/types/components/text.d.ts +15 -0
  88. package/types/components/triangle.d.ts +3 -0
  89. package/types/components/variable.d.ts +24 -0
  90. package/types/const.d.ts +31 -0
  91. package/types/core/collection.d.ts +8 -0
  92. package/types/core/debug.d.ts +1 -0
  93. package/types/core/deep-equals.d.ts +1 -0
  94. package/types/core/dom-to-image.d.ts +127 -0
  95. package/types/core/event.d.ts +181 -0
  96. package/types/core/index.d.ts +2 -0
  97. package/types/core/list.d.ts +32 -0
  98. package/types/core/logger.d.ts +3 -0
  99. package/types/core/memoize.d.ts +6 -0
  100. package/types/core/mixin.d.ts +1 -0
  101. package/types/core/obj-accessor.d.ts +1 -0
  102. package/types/core/reference-map.d.ts +14 -0
  103. package/types/core/script-loader.d.ts +3 -0
  104. package/types/core/snapshot-taker.d.ts +12 -0
  105. package/types/core/stack.d.ts +2 -0
  106. package/types/core/timecapsule.d.ts +18 -0
  107. package/types/core/utils.d.ts +4 -0
  108. package/types/effect/gradation.d.ts +1 -0
  109. package/types/effect/index.d.ts +1 -0
  110. package/types/effect/shadow.d.ts +2 -0
  111. package/types/effect/turn.d.ts +1 -0
  112. package/types/event/event-engine.d.ts +12 -0
  113. package/types/event/event-pump.d.ts +11 -0
  114. package/types/event/event-tracker.d.ts +21 -0
  115. package/types/event/index.d.ts +2 -0
  116. package/types/event/ua-event-handler.d.ts +32 -0
  117. package/types/event-map/event-map.d.ts +9 -0
  118. package/types/event-map/index.d.ts +1 -0
  119. package/types/event-map/move-handler.d.ts +1 -0
  120. package/types/event-map/text-editor-lite.d.ts +1 -0
  121. package/types/index.d.ts +1 -0
  122. package/types/layer/action/emphasize.d.ts +2 -0
  123. package/types/layer/action/popup.d.ts +2 -0
  124. package/types/layer/action/pressed.d.ts +2 -0
  125. package/types/layer/guide-layer.d.ts +44 -0
  126. package/types/layer/index.d.ts +6 -0
  127. package/types/layer/layer.d.ts +29 -0
  128. package/types/layer/model-layer.d.ts +39 -0
  129. package/types/layer/modeler/control-handler.d.ts +18 -0
  130. package/types/layer/modeler/focus-outline.d.ts +5 -0
  131. package/types/layer/modeler/group-outline.d.ts +5 -0
  132. package/types/layer/modeler/index.d.ts +6 -0
  133. package/types/layer/modeler/path-handler.d.ts +17 -0
  134. package/types/layer/modeler/resizer.d.ts +16 -0
  135. package/types/layer/modeler/rotator.d.ts +15 -0
  136. package/types/layer/modeling-layer.d.ts +47 -0
  137. package/types/layer/selection-layer.d.ts +42 -0
  138. package/types/layer/shift-layer.d.ts +18 -0
  139. package/types/layer/tag-layer.d.ts +28 -0
  140. package/types/layout/absolute.d.ts +8 -0
  141. package/types/layout/card.d.ts +7 -0
  142. package/types/layout/html-absolute.d.ts +8 -0
  143. package/types/layout/index.d.ts +7 -0
  144. package/types/layout/layout.d.ts +11 -0
  145. package/types/layout/linear-horizontal.d.ts +7 -0
  146. package/types/layout/linear-vertical.d.ts +7 -0
  147. package/types/layout/table.d.ts +9 -0
  148. package/types/license/license.d.ts +18 -0
  149. package/types/link/arrow_straight.d.ts +3 -0
  150. package/types/link/curve.d.ts +3 -0
  151. package/types/link/index.d.ts +4 -0
  152. package/types/link/link.d.ts +7 -0
  153. package/types/link/right_angle_straight.d.ts +3 -0
  154. package/types/link/straight.d.ts +3 -0
  155. package/types/model/compile.d.ts +1 -0
  156. package/types/model/duplicate.d.ts +1 -0
  157. package/types/model/index.d.ts +3 -0
  158. package/types/model/selector.d.ts +2 -0
  159. package/types/style/compile.d.ts +1 -0
  160. package/types/style/index.d.ts +1 -0
  161. package/types/things-scene/api/add.d.ts +5 -0
  162. package/types/things-scene/api/align.d.ts +1 -0
  163. package/types/things-scene/api/change.d.ts +2 -0
  164. package/types/things-scene/api/clipboard.d.ts +3 -0
  165. package/types/things-scene/api/distribute.d.ts +1 -0
  166. package/types/things-scene/api/duplicate.d.ts +4 -0
  167. package/types/things-scene/api/fullscreen.d.ts +1 -0
  168. package/types/things-scene/api/group.d.ts +8 -0
  169. package/types/things-scene/api/index.d.ts +14 -0
  170. package/types/things-scene/api/listener.d.ts +3 -0
  171. package/types/things-scene/api/remove.d.ts +4 -0
  172. package/types/things-scene/api/symmetry.d.ts +2 -0
  173. package/types/things-scene/api/to-data-url.d.ts +1 -0
  174. package/types/things-scene/api/variables.d.ts +13 -0
  175. package/types/things-scene/api/zorder.d.ts +2 -0
  176. package/types/things-scene/application-context.d.ts +33 -0
  177. package/types/things-scene/config.d.ts +4 -0
  178. package/types/things-scene/create.d.ts +12 -0
  179. package/types/things-scene/fps.d.ts +1 -0
  180. package/types/things-scene/index.d.ts +16 -0
  181. package/types/things-scene/polyfill.d.ts +2 -0
  182. package/types/things-scene/scene.d.ts +146 -0
  183. package/types/things-scene/version.d.ts +2 -0
  184. package/logs/application-2021-10-31-21.log +0 -4
  185. package/logs/connections-2021-10-23-08.log +0 -64
  186. package/logs/connections-2021-10-31-21.log +0 -32
@@ -0,0 +1,33 @@
1
+ export default class ApplicationContext {
2
+ constructor(mode: any, refProvider: any);
3
+ _mode: any;
4
+ set screen(arg: any);
5
+ get screen(): any;
6
+ _baseUrl: string;
7
+ _refProvider: any;
8
+ _rotateStep: number;
9
+ _rotateStepForced: boolean;
10
+ dispose(): void;
11
+ _calcScreen(): void;
12
+ _PPI: number;
13
+ _PPM: number;
14
+ get refProvider(): any;
15
+ set commander(arg: any);
16
+ get commander(): any;
17
+ _commander: any;
18
+ _screen: any;
19
+ get DPPX(): number;
20
+ get PPI(): number;
21
+ get PPM(): number;
22
+ set mode(arg: any);
23
+ get mode(): any;
24
+ get isViewMode(): boolean;
25
+ get isEditMode(): boolean;
26
+ set baseUrl(arg: string);
27
+ get baseUrl(): string;
28
+ url(x: any): string;
29
+ set rotateStep(arg: number);
30
+ get rotateStep(): number;
31
+ set rotateStepForced(arg: boolean);
32
+ get rotateStepForced(): boolean;
33
+ }
@@ -0,0 +1,4 @@
1
+ declare namespace _default {
2
+ function screen(size: any): number;
3
+ }
4
+ export default _default;
@@ -0,0 +1,12 @@
1
+ export default function create({ target, model, style, layers, handlers, mode, refProvider, baseUrl, fitMode }: {
2
+ target: any;
3
+ model: any;
4
+ style: any;
5
+ layers?: any[];
6
+ handlers?: any[];
7
+ mode?: number;
8
+ refProvider: any;
9
+ baseUrl: any;
10
+ fitMode: any;
11
+ }): Scene;
12
+ import Scene from "./scene";
@@ -0,0 +1 @@
1
+ export default function FPS(): number;
@@ -0,0 +1,16 @@
1
+ export function license(): void;
2
+ export { default as polyfill } from "./polyfill";
3
+ export { default as create } from "./create";
4
+ export var Model: typeof model;
5
+ export { default as Layer } from "../layer/layer";
6
+ export { default as EventMap } from "../event-map/event-map";
7
+ export * from "../const";
8
+ export * from "../components/";
9
+ export * from "../layout";
10
+ export * from "../core/logger";
11
+ export { default as ReferenceMap } from "../core/reference-map";
12
+ export { default as ScriptLoader } from "../core/script-loader";
13
+ export { default as Scene } from "./scene";
14
+ export { default as version } from "./version";
15
+ export { default as FPS } from "./fps";
16
+ import * as model from "../model";
@@ -0,0 +1,2 @@
1
+ declare var _default: "done";
2
+ export default _default;
@@ -0,0 +1,146 @@
1
+ export default Scene;
2
+ /**
3
+ * 화면(scene) 객체
4
+ */
5
+ declare class Scene {
6
+ static get residents(): WeakSet<object>;
7
+ /**
8
+ * Create a scene
9
+ * @param {RootContainer} container - Root container
10
+ */
11
+ constructor(container: RootContainer);
12
+ _container: RootContainer;
13
+ app: any;
14
+ _commander: SnapshotCommander;
15
+ /**
16
+ * scene에 컴포넌트를 추가한다.
17
+ * @param models {object} - Component Model Object
18
+ * @param boundsOrOffset {object} - x, y, cx, cy, ...
19
+ * @param onto {string} - onto
20
+ */
21
+ add(...args: any[]): any;
22
+ /**
23
+ * scene의 컴포넌트를 복제한다.
24
+ * 현재 선택되어있는 컴포넌트가 복제되므로, 컴포넌트를 복제하기 위해서는
25
+ * 먼저 복제하고자하는 컴포넌트를 선택된 상태로 만든 후에(참조. {@link select} 메쏘드) 이 메쏘드를 호출한다.
26
+ */
27
+ duplicate(...args: any[]): any;
28
+ /**
29
+ * scene의 컴포넌트를 삭제한다.
30
+ * 현재 선택되어있는 컴포넌트가 삭제되므로, 컴포넌트를 삭제하기 위해서는
31
+ * 먼저 삭제하고자하는 컴포넌트를 선택된 상태로 만든 후에(참조. {@link select} 메쏘드) 이 메쏘드를 호출한다.
32
+ */
33
+ remove(...args: any[]): any;
34
+ animate(...args: any[]): any;
35
+ /**
36
+ * scene이 그려지고 있는 컨테이너를 전체화면 모드에서 표시되도록 한다.
37
+ */
38
+ fullscreen(...args: any[]): any;
39
+ /**
40
+ * 파라미터로 주어지는 id를 가진 컴포넌트의 data 값을 변경한다.
41
+ * @param id {string} - component id
42
+ * @param value {any} - data value
43
+ */
44
+ variable(name: any, value: any, ...args: any[]): any;
45
+ set target(arg: any);
46
+ get target(): any;
47
+ set scale(arg: any);
48
+ get scale(): any;
49
+ set translate(arg: any);
50
+ get translate(): any;
51
+ get unit(): any;
52
+ get PPM(): any;
53
+ get PPI(): any;
54
+ get DPPX(): any;
55
+ /**
56
+ * Scene 모델의 단위(unit)을 감안한 기본 Scale 값을 제공한다.
57
+ * 통산 'mm', 'cm' 단위의 Scene은 각 값에 10배를 곱한 수치로 모델링된다.(값을 10으로 나눈값이 실제 단위와 일치한다.)
58
+ * unitScale의 의미는 scene에 unitScale값으로 scale하면, 각 단위값이 화면과 일치한다는 의미이다.
59
+ *
60
+ * 모델링의 수치단위가 픽셀이 아니고, mm, cm, inch 등의 단위인 경우에,
61
+ * 화면에서의 크기가 실물과 유사하게 보이는 수준의 기본 스케일을 제공하는 기능이다.
62
+ * 이 값은 내부적으로는, Ruler에서 눈금을 실제 자의 눈금과 일치시키기 위해서 사용한다.
63
+ */
64
+ get unitScale(): any;
65
+ set screen(arg: number);
66
+ /**
67
+ * scene이 그려질 모니터 화면의 크기정보 (inch)
68
+ * 예시) 17, 20, 24, 27, 30, ...
69
+ * @type {number}
70
+ */
71
+ get screen(): number;
72
+ /**
73
+ * 컨테이너의 크기에 맞게 크기를 조정한다.
74
+ */
75
+ resize(): void;
76
+ dispose(): void;
77
+ set selected(arg: any);
78
+ /**
79
+ * scene 내에서 선택된 컴포넌트의 리스트
80
+ * @type {object-array}
81
+ */
82
+ get selected(): any;
83
+ select(selector: any, ...others: any[]): any;
84
+ /**
85
+ * scene 모델링 중에 변경 이력을 유지하는 커맨드 관리자
86
+ * @type {object}
87
+ */
88
+ get commander(): any;
89
+ /**
90
+ * scene 컴포넌트 모델의 최근 변경을 취소한다.
91
+ */
92
+ undo(): void;
93
+ /**
94
+ * {@link undo}로 취소했던 scene 컴포넌트 모델의 변경을 다시 실행한다.
95
+ */
96
+ redo(): void;
97
+ /**
98
+ * scene 모델 중에서 선택된 컴포넌트들을 잘라낸다.
99
+ */
100
+ cut(...args: any[]): any;
101
+ /**
102
+ * scene 모델 중에서 선택된 컴포넌트들을 복사한다. {@link paste} 메쏘드로 붙여넣기 할 수 있다.
103
+ */
104
+ copy(...args: any[]): any;
105
+ /**
106
+ * scene 모델 중에서 복사된 컴포넌트를 붙여넣기 한다.
107
+ */
108
+ paste(...args: any[]): any;
109
+ undoableChange(...args: any[]): any;
110
+ change(...args: any[]): any;
111
+ set model(arg: any);
112
+ /**
113
+ * scene이 그리고 있는 컴포넌트 모델정보
114
+ * @type {object}
115
+ */
116
+ get model(): any;
117
+ get root(): any;
118
+ findAll(...args: any[]): any;
119
+ findFirst(...args: any[]): any;
120
+ findById(...args: any[]): any;
121
+ serialize(...args: any[]): any;
122
+ align(...args: any[]): any;
123
+ distribute(...args: any[]): any;
124
+ move(...args: any[]): any;
125
+ zorder(...args: any[]): any;
126
+ symmetryX(...args: any[]): any;
127
+ symmetryY(...args: any[]): any;
128
+ on(...args: any[]): any;
129
+ once(...args: any[]): any;
130
+ off(...args: any[]): any;
131
+ set mode(arg: any);
132
+ get mode(): any;
133
+ toDataURL(...args: any[]): any;
134
+ group(...args: any[]): any;
135
+ ungroup(...args: any[]): any;
136
+ fit(type: any): void;
137
+ get fitMode(): any;
138
+ get ids(): any;
139
+ set data(arg: any);
140
+ get data(): any;
141
+ set variables(arg: any);
142
+ get variables(): any;
143
+ set baseUrl(arg: any);
144
+ get baseUrl(): any;
145
+ }
146
+ import SnapshotCommander from "../command/snapshot-commander";
@@ -0,0 +1,2 @@
1
+ export default version;
2
+ declare const version: "0.0.0";
@@ -1,4 +0,0 @@
1
- 2021-10-31T12:28:21.156Z info: File Storage is Ready.
2
- 2021-10-31T12:28:25.359Z info: Database connection established
3
- 2021-10-31T12:28:27.591Z info: 🚀 Server ready at http://0.0.0.0:3000/graphql
4
- 2021-10-31T12:28:27.592Z info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/subscriptions
@@ -1,64 +0,0 @@
1
- 2021-10-22T23:50:20.361Z info: Initializing ConnectionManager...
2
- 2021-10-22T23:50:20.366Z info: Connector 'echo-back-server' started to ready
3
- 2021-10-22T23:50:20.366Z info: Connector 'echo-back' started to ready
4
- 2021-10-22T23:50:20.367Z info: Connector 'http-connector' started to ready
5
- 2021-10-22T23:50:20.367Z info: Connector 'graphql-connector' started to ready
6
- 2021-10-22T23:50:20.367Z info: Connector 'sqlite-connector' started to ready
7
- 2021-10-22T23:50:20.370Z info: Connector 'postgresql-connector' started to ready
8
- 2021-10-22T23:50:20.371Z info: Connector 'mqtt-connector' started to ready
9
- 2021-10-22T23:50:20.371Z info: Connector 'mssql-connector' started to ready
10
- 2021-10-22T23:50:20.372Z info: Connector 'oracle-connector' started to ready
11
- 2021-10-22T23:50:20.373Z info: Connector 'socket-server' started to ready
12
- 2021-10-22T23:50:20.377Z info: echo-back-servers are ready
13
- 2021-10-22T23:50:20.377Z info: echo-back connections are ready
14
- 2021-10-22T23:50:20.377Z info: http-connector connections are ready
15
- 2021-10-22T23:50:20.377Z info: graphql-connector connections are ready
16
- 2021-10-22T23:50:20.378Z info: sqlite-connector connections are ready
17
- 2021-10-22T23:50:20.378Z info: postgresql-connector connections are ready
18
- 2021-10-22T23:50:20.378Z info: mqtt-connector connections are ready
19
- 2021-10-22T23:50:20.378Z info: mssql-connector connections are ready
20
- 2021-10-22T23:50:20.379Z info: oracle-connector connections are ready
21
- 2021-10-22T23:50:20.387Z info: socket servers are ready
22
- 2021-10-22T23:50:20.388Z info: All connector for 'echo-back-server' ready
23
- 2021-10-22T23:50:20.388Z info: All connector for 'echo-back' ready
24
- 2021-10-22T23:50:20.394Z info: All connector for 'http-connector' ready
25
- 2021-10-22T23:50:20.396Z info: All connector for 'graphql-connector' ready
26
- 2021-10-22T23:50:20.397Z info: All connector for 'sqlite-connector' ready
27
- 2021-10-22T23:50:20.398Z info: All connector for 'postgresql-connector' ready
28
- 2021-10-22T23:50:20.398Z info: All connector for 'mqtt-connector' ready
29
- 2021-10-22T23:50:20.399Z info: All connector for 'mssql-connector' ready
30
- 2021-10-22T23:50:20.399Z info: All connector for 'oracle-connector' ready
31
- 2021-10-22T23:50:20.399Z info: All connector for 'socket-server' ready
32
- 2021-10-22T23:50:20.401Z info: ConnectionManager initialization done:
33
- 2021-10-22T23:54:01.166Z info: Initializing ConnectionManager...
34
- 2021-10-22T23:54:01.167Z info: Connector 'echo-back-server' started to ready
35
- 2021-10-22T23:54:01.167Z info: Connector 'echo-back' started to ready
36
- 2021-10-22T23:54:01.167Z info: Connector 'http-connector' started to ready
37
- 2021-10-22T23:54:01.167Z info: Connector 'graphql-connector' started to ready
38
- 2021-10-22T23:54:01.168Z info: Connector 'sqlite-connector' started to ready
39
- 2021-10-22T23:54:01.168Z info: Connector 'postgresql-connector' started to ready
40
- 2021-10-22T23:54:01.168Z info: Connector 'mqtt-connector' started to ready
41
- 2021-10-22T23:54:01.168Z info: Connector 'mssql-connector' started to ready
42
- 2021-10-22T23:54:01.169Z info: Connector 'oracle-connector' started to ready
43
- 2021-10-22T23:54:01.169Z info: Connector 'socket-server' started to ready
44
- 2021-10-22T23:54:01.169Z info: echo-back-servers are ready
45
- 2021-10-22T23:54:01.169Z info: echo-back connections are ready
46
- 2021-10-22T23:54:01.169Z info: http-connector connections are ready
47
- 2021-10-22T23:54:01.169Z info: graphql-connector connections are ready
48
- 2021-10-22T23:54:01.169Z info: sqlite-connector connections are ready
49
- 2021-10-22T23:54:01.170Z info: postgresql-connector connections are ready
50
- 2021-10-22T23:54:01.170Z info: mqtt-connector connections are ready
51
- 2021-10-22T23:54:01.170Z info: mssql-connector connections are ready
52
- 2021-10-22T23:54:01.170Z info: oracle-connector connections are ready
53
- 2021-10-22T23:54:01.170Z info: socket servers are ready
54
- 2021-10-22T23:54:01.170Z info: All connector for 'echo-back-server' ready
55
- 2021-10-22T23:54:01.170Z info: All connector for 'echo-back' ready
56
- 2021-10-22T23:54:01.170Z info: All connector for 'http-connector' ready
57
- 2021-10-22T23:54:01.170Z info: All connector for 'graphql-connector' ready
58
- 2021-10-22T23:54:01.171Z info: All connector for 'sqlite-connector' ready
59
- 2021-10-22T23:54:01.171Z info: All connector for 'postgresql-connector' ready
60
- 2021-10-22T23:54:01.171Z info: All connector for 'mqtt-connector' ready
61
- 2021-10-22T23:54:01.171Z info: All connector for 'mssql-connector' ready
62
- 2021-10-22T23:54:01.171Z info: All connector for 'oracle-connector' ready
63
- 2021-10-22T23:54:01.171Z info: All connector for 'socket-server' ready
64
- 2021-10-22T23:54:01.171Z info: ConnectionManager initialization done:
@@ -1,32 +0,0 @@
1
- 2021-10-31T12:28:27.669Z info: Initializing ConnectionManager...
2
- 2021-10-31T12:28:27.670Z info: Connector 'echo-back-server' started to ready
3
- 2021-10-31T12:28:27.671Z info: Connector 'echo-back' started to ready
4
- 2021-10-31T12:28:27.671Z info: Connector 'http-connector' started to ready
5
- 2021-10-31T12:28:27.671Z info: Connector 'graphql-connector' started to ready
6
- 2021-10-31T12:28:27.671Z info: Connector 'sqlite-connector' started to ready
7
- 2021-10-31T12:28:27.671Z info: Connector 'postgresql-connector' started to ready
8
- 2021-10-31T12:28:27.672Z info: Connector 'mqtt-connector' started to ready
9
- 2021-10-31T12:28:27.672Z info: Connector 'mssql-connector' started to ready
10
- 2021-10-31T12:28:27.672Z info: Connector 'oracle-connector' started to ready
11
- 2021-10-31T12:28:27.672Z info: Connector 'socket-server' started to ready
12
- 2021-10-31T12:28:27.673Z info: echo-back-servers are ready
13
- 2021-10-31T12:28:27.673Z info: echo-back connections are ready
14
- 2021-10-31T12:28:27.673Z info: http-connector connections are ready
15
- 2021-10-31T12:28:27.673Z info: graphql-connector connections are ready
16
- 2021-10-31T12:28:27.673Z info: sqlite-connector connections are ready
17
- 2021-10-31T12:28:27.673Z info: postgresql-connector connections are ready
18
- 2021-10-31T12:28:27.673Z info: mqtt-connector connections are ready
19
- 2021-10-31T12:28:27.674Z info: mssql-connector connections are ready
20
- 2021-10-31T12:28:27.674Z info: oracle-connector connections are ready
21
- 2021-10-31T12:28:27.674Z info: socket servers are ready
22
- 2021-10-31T12:28:27.674Z info: All connector for 'echo-back-server' ready
23
- 2021-10-31T12:28:27.674Z info: All connector for 'echo-back' ready
24
- 2021-10-31T12:28:27.674Z info: All connector for 'http-connector' ready
25
- 2021-10-31T12:28:27.674Z info: All connector for 'graphql-connector' ready
26
- 2021-10-31T12:28:27.674Z info: All connector for 'sqlite-connector' ready
27
- 2021-10-31T12:28:27.674Z info: All connector for 'postgresql-connector' ready
28
- 2021-10-31T12:28:27.676Z info: All connector for 'mqtt-connector' ready
29
- 2021-10-31T12:28:27.676Z info: All connector for 'mssql-connector' ready
30
- 2021-10-31T12:28:27.676Z info: All connector for 'oracle-connector' ready
31
- 2021-10-31T12:28:27.676Z info: All connector for 'socket-server' ready
32
- 2021-10-31T12:28:27.676Z info: ConnectionManager initialization done: