@operato/scene-integration 1.3.14 → 1.4.0
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 +17 -0
- package/dist/connection-state-subscription.d.ts +1 -1
- package/dist/data-subscription.d.ts +1 -1
- package/dist/scenario-control.d.ts +1 -1
- package/dist/scenario-instance-subscription.d.ts +1 -1
- package/dist/scenario-queue-subscription.d.ts +1 -1
- package/dist/scenario-run.d.ts +1 -1
- package/dist/scenario-run.js +4 -2
- package/dist/scenario-run.js.map +1 -1
- package/dist/scenario-start.d.ts +1 -1
- package/dist/scenario-stop.d.ts +1 -1
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +3 -8
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +3 -3
- package/logs/application-2024-08-11-22.log +105 -0
- package/logs/connections-2024-08-11-22.log +50 -0
- package/logs/system/.ce832741a58883a058e9af6fb7483de16a838e2c-audit.json +6 -6
- package/logs/system/scenario-NOW-2024-08-11-22.log +66 -0
- package/logs/system/scenario-NOW-2024-08-11-23.log +1826 -0
- package/package.json +2 -2
- package/schema.graphql +443 -43
- package/src/scenario-run.ts +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/logs/application-2024-02-05-00.log +0 -169
- package/logs/application-2024-02-05-01.log +0 -7
- package/logs/connections-2024-02-05-00.log +0 -369
- package/logs/system/scenario-NOW-2023-09-08-11.log +0 -2970
- package/logs/system/scenario-NOW-2023-09-08-12.log +0 -440
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
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.4.0](https://github.com/things-scene/operato-scene/compare/v1.3.29...v1.4.0) (2025-01-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @operato/scene-integration
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.3.15](https://github.com/things-scene/operato-scene/compare/v1.3.14...v1.3.15) (2024-04-22)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### :bug: Bug Fix
|
|
18
|
+
|
|
19
|
+
* 다국어 컴포넌트 도형 속성 상속, 시나리오 옵셔널 추가 ([1300d74](https://github.com/things-scene/operato-scene/commit/1300d7451d32d72303a9a7f03ff027071ec2ce07))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
## [1.3.14](https://github.com/things-scene/operato-scene/compare/v1.3.13...v1.3.14) (2024-02-14)
|
|
7
24
|
|
|
8
25
|
**Note:** Version bump only for package @operato/scene-integration
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComponentNature, Shape } from '@hatiolab/things-scene';
|
|
2
2
|
declare const ConnectionStateSubscription_base: (new (...args: any[]) => {
|
|
3
3
|
isDataSource(): boolean;
|
|
4
|
-
_convertDataFormat(data: any, format: string): any;
|
|
4
|
+
_convertDataFormat(data: any, format: "json" | "text" | "jsonp" | string): any;
|
|
5
5
|
}) & typeof Shape;
|
|
6
6
|
export default class ConnectionStateSubscription extends ConnectionStateSubscription_base {
|
|
7
7
|
static _image: HTMLImageElement;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComponentNature, Shape } from '@hatiolab/things-scene';
|
|
2
2
|
declare const DataSubscription_base: (new (...args: any[]) => {
|
|
3
3
|
isDataSource(): boolean;
|
|
4
|
-
_convertDataFormat(data: any, format: string): any;
|
|
4
|
+
_convertDataFormat(data: any, format: "json" | "text" | "jsonp" | string): any;
|
|
5
5
|
}) & typeof Shape;
|
|
6
6
|
export default class DataSubscription extends DataSubscription_base {
|
|
7
7
|
static _image: HTMLImageElement;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComponentNature, Properties, Shape } from '@hatiolab/things-scene';
|
|
2
2
|
declare const ScenarioControl_base: (new (...args: any[]) => {
|
|
3
3
|
isDataSource(): boolean;
|
|
4
|
-
_convertDataFormat(data: any, format: string): any;
|
|
4
|
+
_convertDataFormat(data: any, format: "json" | "text" | "jsonp" | string): any;
|
|
5
5
|
}) & typeof Shape;
|
|
6
6
|
export default class ScenarioControl extends ScenarioControl_base {
|
|
7
7
|
static _image: HTMLImageElement;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComponentNature, Shape } from '@hatiolab/things-scene';
|
|
2
2
|
declare const ScenarioInstanceSubscription_base: (new (...args: any[]) => {
|
|
3
3
|
isDataSource(): boolean;
|
|
4
|
-
_convertDataFormat(data: any, format: string): any;
|
|
4
|
+
_convertDataFormat(data: any, format: "json" | "text" | "jsonp" | string): any;
|
|
5
5
|
}) & typeof Shape;
|
|
6
6
|
export default class ScenarioInstanceSubscription extends ScenarioInstanceSubscription_base {
|
|
7
7
|
static _image: HTMLImageElement;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComponentNature, Shape } from '@hatiolab/things-scene';
|
|
2
2
|
declare const ScenarioQueueSubscription_base: (new (...args: any[]) => {
|
|
3
3
|
isDataSource(): boolean;
|
|
4
|
-
_convertDataFormat(data: any, format: string): any;
|
|
4
|
+
_convertDataFormat(data: any, format: "json" | "text" | "jsonp" | string): any;
|
|
5
5
|
}) & typeof Shape;
|
|
6
6
|
export default class ScenarioQueueSubscription extends ScenarioQueueSubscription_base {
|
|
7
7
|
static _image: HTMLImageElement;
|
package/dist/scenario-run.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComponentNature, Properties, Shape } from '@hatiolab/things-scene';
|
|
2
2
|
declare const ScenarioRun_base: (new (...args: any[]) => {
|
|
3
3
|
isDataSource(): boolean;
|
|
4
|
-
_convertDataFormat(data: any, format: string): any;
|
|
4
|
+
_convertDataFormat(data: any, format: "json" | "text" | "jsonp" | string): any;
|
|
5
5
|
}) & typeof Shape;
|
|
6
6
|
export default class ScenarioRun extends ScenarioRun_base {
|
|
7
7
|
static _image: HTMLImageElement;
|
package/dist/scenario-run.js
CHANGED
|
@@ -182,15 +182,17 @@ export default class ScenarioRun extends DataSource(RectPath(Shape)) {
|
|
|
182
182
|
}
|
|
183
183
|
}
|
|
184
184
|
mask() {
|
|
185
|
+
var _a, _b;
|
|
185
186
|
const { maskOnError } = this.state;
|
|
186
187
|
if (maskOnError) {
|
|
187
188
|
//@ts-ignore
|
|
188
|
-
this.root.target_element.style.filter = maskOnError;
|
|
189
|
+
(_b = (_a = this.root) === null || _a === void 0 ? void 0 : _a.target_element) === null || _b === void 0 ? void 0 : _b.style.filter = maskOnError;
|
|
189
190
|
}
|
|
190
191
|
}
|
|
191
192
|
demask() {
|
|
193
|
+
var _a, _b;
|
|
192
194
|
//@ts-ignore
|
|
193
|
-
this.root.target_element.style.filter = 'none';
|
|
195
|
+
(_b = (_a = this.root) === null || _a === void 0 ? void 0 : _a.target_element) === null || _b === void 0 ? void 0 : _b.style.filter = 'none';
|
|
194
196
|
}
|
|
195
197
|
}
|
|
196
198
|
Component.register('scenario-run', ScenarioRun);
|
package/dist/scenario-run.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scenario-run.js","sourceRoot":"","sources":["../src/scenario-run.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"scenario-run.js","sourceRoot":"","sources":["../src/scenario-run.ts"],"names":[],"mappings":"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","sourcesContent":["import gql from 'graphql-tag'\n\nimport { Component, ComponentNature, DataSource, Properties, RectPath, Shape } from '@hatiolab/things-scene'\nimport { client } from '@operato/graphql'\n\nimport { scenarios } from './client-api'\n\nconst NATURE: ComponentNature = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'select',\n label: 'scenario-name',\n name: 'scenarioName',\n property: {\n options: scenarios\n }\n },\n {\n type: 'data',\n label: 'variables',\n name: 'variables'\n },\n {\n type: 'number',\n label: 'repeat-interval',\n name: 'interval',\n placeholder: 'milli-seconds'\n },\n {\n type: 'checkbox',\n label: 'run-on-start',\n name: 'runOnStart'\n },\n {\n type: 'select',\n label: 'mask-on-error',\n name: 'maskOnError',\n property: {\n options: [\n {\n display: 'none',\n value: ''\n },\n {\n display: 'strong-blur',\n value: 'blur(4px)'\n },\n {\n display: 'weak-blur',\n value: 'blur(2px)'\n },\n {\n display: 'grayscale',\n value: 'grayscale(1)'\n }\n ]\n }\n }\n ],\n 'value-property': 'variables',\n help: 'scene/component/scenario-run'\n}\n\nexport default class ScenarioRun extends DataSource(RectPath(Shape)) {\n static _image: HTMLImageElement\n\n static get image() {\n if (!ScenarioRun._image) {\n ScenarioRun._image = new Image()\n ScenarioRun._image.src = new URL('../icons/symbol-scenario-run.png', import.meta.url).href\n }\n return ScenarioRun._image\n }\n\n private _started: boolean = false\n private _raf: number = 0\n private _timeout: NodeJS.Timeout | null = null\n\n render(context: CanvasRenderingContext2D) {\n var { left, top, width, height } = this.bounds\n context.beginPath()\n this.drawImage(context, ScenarioRun.image, left, top, width, height)\n }\n\n ready() {\n super.ready()\n\n if (this.app.isViewMode) {\n if (this.state.runOnStart) {\n this.started = true\n }\n }\n }\n\n dispose(): void {\n this.stop()\n super.dispose()\n }\n\n get nature() {\n return NATURE\n }\n\n onchange(after: Properties) {\n if ('variables' in after) {\n this.requestData()\n }\n }\n\n set started(started: boolean) {\n this.setState('started')\n\n if (started) {\n this.start()\n } else {\n this.stop()\n }\n }\n\n get started() {\n return this.state.started\n }\n\n start() {\n if (this._started) {\n return\n }\n\n this._started = true\n\n this._raf = requestAnimationFrame(() => this.requestData())\n }\n\n stop() {\n if (!this._started) {\n return\n }\n\n this._started = false\n\n if (this._raf) {\n cancelAnimationFrame(this._raf)\n this._raf = 0\n }\n if (this._timeout) {\n clearTimeout(this._timeout)\n this._timeout = null\n }\n }\n\n get variables() {\n return this.state.variables\n }\n\n set variables(variables) {\n this.setState('variables', variables)\n }\n\n async requestData() {\n let { scenarioName, variables, maskOnError } = this.state\n if (!scenarioName || !this.app.isViewMode) {\n return\n }\n\n try {\n variables = typeof variables == 'string' ? JSON.parse(variables) : variables\n } catch (e) {\n console.warn('runScenario mutation variable is not an object')\n }\n\n if (client) {\n try {\n var response = await client.query({\n query: gql`\n mutation ($scenarioName: String!, $variables: Object) {\n runScenario(scenarioName: $scenarioName, variables: $variables) {\n state\n message\n result\n }\n }\n `,\n variables: {\n scenarioName: scenarioName,\n variables\n }\n })\n\n this.data = response?.data?.runScenario?.result\n this.demask()\n } catch (e: any) {\n console.error(`calling runScenario mutation error: ${e?.message ?? e}`)\n this.mask()\n } finally {\n if (this._started && this.state.interval > 0) {\n this._timeout = setTimeout(() => this.requestData(), this.state.interval)\n }\n }\n }\n }\n\n mask() {\n const { maskOnError } = this.state\n if (maskOnError) {\n //@ts-ignore\n this.root?.target_element?.style.filter = maskOnError\n }\n }\n\n demask() {\n //@ts-ignore\n this.root?.target_element?.style.filter = 'none'\n }\n}\n\nComponent.register('scenario-run', ScenarioRun)\n"]}
|
package/dist/scenario-start.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComponentNature, Properties, Shape } from '@hatiolab/things-scene';
|
|
2
2
|
declare const ScenarioStart_base: (new (...args: any[]) => {
|
|
3
3
|
isDataSource(): boolean;
|
|
4
|
-
_convertDataFormat(data: any, format: string): any;
|
|
4
|
+
_convertDataFormat(data: any, format: "json" | "text" | "jsonp" | string): any;
|
|
5
5
|
}) & typeof Shape;
|
|
6
6
|
export default class ScenarioStart extends ScenarioStart_base {
|
|
7
7
|
static _image: HTMLImageElement;
|
package/dist/scenario-stop.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ComponentNature, Properties, Shape } from '@hatiolab/things-scene';
|
|
2
2
|
declare const ScenarioStop_base: (new (...args: any[]) => {
|
|
3
3
|
isDataSource(): boolean;
|
|
4
|
-
_convertDataFormat(data: any, format: string): any;
|
|
4
|
+
_convertDataFormat(data: any, format: "json" | "text" | "jsonp" | string): any;
|
|
5
5
|
}) & typeof Shape;
|
|
6
6
|
export default class ScenarioStop extends ScenarioStop_base {
|
|
7
7
|
static _image: HTMLImageElement;
|
|
@@ -6,14 +6,9 @@
|
|
|
6
6
|
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/application-2024-
|
|
11
|
-
"hash": "
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
"date": 1707062410497,
|
|
15
|
-
"name": "logs/application-2024-02-05-01.log",
|
|
16
|
-
"hash": "531458ca9f3832d0358ec8187af9e864c34cf6e56d0a8001124df5538d0fed40"
|
|
9
|
+
"date": 1723384487063,
|
|
10
|
+
"name": "logs/application-2024-08-11-22.log",
|
|
11
|
+
"hash": "638886e9e1654cb3e1d9a9318eed08105b346940e040aba60da10967ad826c0e"
|
|
17
12
|
}
|
|
18
13
|
],
|
|
19
14
|
"hashType": "sha256"
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/connections-2024-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1723384488854,
|
|
10
|
+
"name": "logs/connections-2024-08-11-22.log",
|
|
11
|
+
"hash": "23dcbd41ef93f4166ab024044ad29c942d2c3ab55117a82e5b19b7d033a0a84a"
|
|
12
12
|
}
|
|
13
13
|
],
|
|
14
14
|
"hashType": "sha256"
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
2024-08-11T22:54:48+09:00 info: File Storage is Ready.
|
|
2
|
+
2024-08-11T22:54:49+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-08-11T22:54:49+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-08-11T22:54:49+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-08-11T22:54:49+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-08-11T22:54:50+09:00 info: Default DataSource established
|
|
104
|
+
2024-08-11T22:54:51+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
105
|
+
2024-08-11T22:54:51+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
2024-08-11T22:54:51+09:00 info: Initializing ConnectionManager...
|
|
2
|
+
2024-08-11T22:54:51+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
+
2024-08-11T22:54:51+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
+
2024-08-11T22:54:51+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
+
2024-08-11T22:54:51+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
+
2024-08-11T22:54:51+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
+
2024-08-11T22:54:51+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
+
2024-08-11T22:54:51+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
+
2024-08-11T22:54:51+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
+
2024-08-11T22:54:51+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
+
2024-08-11T22:54:51+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
+
2024-08-11T22:54:51+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
+
2024-08-11T22:54:51+09:00 info: Connector 'operato-connector' started to ready
|
|
14
|
+
2024-08-11T22:54:51+09:00 info: Connector 'email-connector' started to ready
|
|
15
|
+
2024-08-11T22:54:51+09:00 info: Connector 'influxdb-connector' started to ready
|
|
16
|
+
2024-08-11T22:54:51+09:00 info: Connector 'msgraph-connector' started to ready
|
|
17
|
+
2024-08-11T22:54:51+09:00 info: Connector 'proxy-connector' started to ready
|
|
18
|
+
2024-08-11T22:54:51+09:00 info: echo-back-servers are ready
|
|
19
|
+
2024-08-11T22:54:51+09:00 info: echo-back connections are ready
|
|
20
|
+
2024-08-11T22:54:51+09:00 info: http-connector connections are ready
|
|
21
|
+
2024-08-11T22:54:51+09:00 info: graphql-connector connections are ready
|
|
22
|
+
2024-08-11T22:54:51+09:00 info: sqlite-connector connections are ready
|
|
23
|
+
2024-08-11T22:54:51+09:00 info: postgresql-connector connections are ready
|
|
24
|
+
2024-08-11T22:54:51+09:00 info: mqtt-connector connections are ready
|
|
25
|
+
2024-08-11T22:54:51+09:00 info: mssql-connector connections are ready
|
|
26
|
+
2024-08-11T22:54:51+09:00 info: oracle-connector connections are ready
|
|
27
|
+
2024-08-11T22:54:51+09:00 info: mysql-connector connections are ready
|
|
28
|
+
2024-08-11T22:54:51+09:00 info: socket servers are ready
|
|
29
|
+
2024-08-11T22:54:51+09:00 info: operato-connector connections are ready
|
|
30
|
+
2024-08-11T22:54:51+09:00 info: email connections are ready
|
|
31
|
+
2024-08-11T22:54:51+09:00 info: influxdb connections are ready
|
|
32
|
+
2024-08-11T22:54:51+09:00 info: msgraph-connector connections are ready
|
|
33
|
+
2024-08-11T22:54:51+09:00 info: proxy-connector connections are ready
|
|
34
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'echo-back-server' ready
|
|
35
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'echo-back' ready
|
|
36
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'http-connector' ready
|
|
37
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'graphql-connector' ready
|
|
38
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'sqlite-connector' ready
|
|
39
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'postgresql-connector' ready
|
|
40
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'mqtt-connector' ready
|
|
41
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'mssql-connector' ready
|
|
42
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'oracle-connector' ready
|
|
43
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'mysql-connector' ready
|
|
44
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'socket-server' ready
|
|
45
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'operato-connector' ready
|
|
46
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'email-connector' ready
|
|
47
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'influxdb-connector' ready
|
|
48
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'msgraph-connector' ready
|
|
49
|
+
2024-08-11T22:54:51+09:00 info: All connector for 'proxy-connector' ready
|
|
50
|
+
2024-08-11T22:54:51+09:00 info: ConnectionManager initialization done:
|
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
"auditLog": "logs/system/.ce832741a58883a058e9af6fb7483de16a838e2c-audit.json",
|
|
7
7
|
"files": [
|
|
8
8
|
{
|
|
9
|
-
"date":
|
|
10
|
-
"name": "logs/system/scenario-NOW-
|
|
11
|
-
"hash": "
|
|
9
|
+
"date": 1723384628972,
|
|
10
|
+
"name": "logs/system/scenario-NOW-2024-08-11-22.log",
|
|
11
|
+
"hash": "48fc825353eacfd2b548897112bd4ca6db7677cc6681a93345cc37d7c73d6b64"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"date":
|
|
15
|
-
"name": "logs/system/scenario-NOW-
|
|
16
|
-
"hash": "
|
|
14
|
+
"date": 1723384800327,
|
|
15
|
+
"name": "logs/system/scenario-NOW-2024-08-11-23.log",
|
|
16
|
+
"hash": "cd0e9026213362771920e99d7ba6b1170e34dc661de29b257f0f93f0077f5b3e"
|
|
17
17
|
}
|
|
18
18
|
],
|
|
19
19
|
"hashType": "sha256"
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
2024-08-11T22:57:08+09:00 info: NOW-1723384628966:[state changed] STOPPED => READY
|
|
2
|
+
2024-08-11T22:57:08+09:00 info: NOW-1723384628966:[state changed] READY => STARTED
|
|
3
|
+
2024-08-11T22:57:08+09:00 info: Start 1 Rounds #######
|
|
4
|
+
2024-08-11T22:57:08+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
5
|
+
2024-08-11T22:57:08+09:00 info: Step done.
|
|
6
|
+
2024-08-11T22:57:08+09:00 info: NOW-1723384628966:[state changed] READY => STARTED
|
|
7
|
+
2024-08-11T22:57:08+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
8
|
+
2024-08-11T22:57:08+09:00 info: Step done.
|
|
9
|
+
2024-08-11T22:57:08+09:00 info: NOW-1723384628966:[state changed] READY => STARTED
|
|
10
|
+
2024-08-11T22:57:08+09:00 info: NOW-1723384628966:[state changed] STOPPED => UNLOADED
|
|
11
|
+
2024-08-11T22:57:08+09:00 info: NOW-1723384628966:[state changed] STOPPED => UNLOADED
|
|
12
|
+
2024-08-11T22:57:10+09:00 info: NOW-1723384630020:[state changed] STOPPED => READY
|
|
13
|
+
2024-08-11T22:57:10+09:00 info: NOW-1723384630020:[state changed] READY => STARTED
|
|
14
|
+
2024-08-11T22:57:10+09:00 info: Start 1 Rounds #######
|
|
15
|
+
2024-08-11T22:57:10+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
16
|
+
2024-08-11T22:57:10+09:00 info: Step done.
|
|
17
|
+
2024-08-11T22:57:10+09:00 info: NOW-1723384630020:[state changed] READY => STARTED
|
|
18
|
+
2024-08-11T22:57:10+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
19
|
+
2024-08-11T22:57:10+09:00 info: Step done.
|
|
20
|
+
2024-08-11T22:57:10+09:00 info: NOW-1723384630020:[state changed] READY => STARTED
|
|
21
|
+
2024-08-11T22:57:10+09:00 info: NOW-1723384630020:[state changed] STOPPED => UNLOADED
|
|
22
|
+
2024-08-11T22:57:10+09:00 info: NOW-1723384630020:[state changed] STOPPED => UNLOADED
|
|
23
|
+
2024-08-11T22:57:43+09:00 info: NOW-1723384663186:[state changed] STOPPED => READY
|
|
24
|
+
2024-08-11T22:57:43+09:00 info: NOW-1723384663186:[state changed] READY => STARTED
|
|
25
|
+
2024-08-11T22:57:43+09:00 info: Start 1 Rounds #######
|
|
26
|
+
2024-08-11T22:57:43+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
27
|
+
2024-08-11T22:57:43+09:00 info: Step done.
|
|
28
|
+
2024-08-11T22:57:43+09:00 info: NOW-1723384663186:[state changed] READY => STARTED
|
|
29
|
+
2024-08-11T22:57:43+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
30
|
+
2024-08-11T22:57:43+09:00 info: Step done.
|
|
31
|
+
2024-08-11T22:57:43+09:00 info: NOW-1723384663186:[state changed] READY => STARTED
|
|
32
|
+
2024-08-11T22:57:43+09:00 info: NOW-1723384663186:[state changed] STOPPED => UNLOADED
|
|
33
|
+
2024-08-11T22:57:43+09:00 info: NOW-1723384663186:[state changed] STOPPED => UNLOADED
|
|
34
|
+
2024-08-11T22:57:44+09:00 info: NOW-1723384664218:[state changed] STOPPED => READY
|
|
35
|
+
2024-08-11T22:57:44+09:00 info: NOW-1723384664218:[state changed] READY => STARTED
|
|
36
|
+
2024-08-11T22:57:44+09:00 info: Start 1 Rounds #######
|
|
37
|
+
2024-08-11T22:57:44+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
38
|
+
2024-08-11T22:57:44+09:00 info: Step done.
|
|
39
|
+
2024-08-11T22:57:44+09:00 info: NOW-1723384664218:[state changed] READY => STARTED
|
|
40
|
+
2024-08-11T22:57:44+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
41
|
+
2024-08-11T22:57:44+09:00 info: Step done.
|
|
42
|
+
2024-08-11T22:57:44+09:00 info: NOW-1723384664218:[state changed] READY => STARTED
|
|
43
|
+
2024-08-11T22:57:44+09:00 info: NOW-1723384664218:[state changed] STOPPED => UNLOADED
|
|
44
|
+
2024-08-11T22:57:44+09:00 info: NOW-1723384664218:[state changed] STOPPED => UNLOADED
|
|
45
|
+
2024-08-11T22:58:16+09:00 info: NOW-1723384696539:[state changed] STOPPED => READY
|
|
46
|
+
2024-08-11T22:58:16+09:00 info: NOW-1723384696539:[state changed] READY => STARTED
|
|
47
|
+
2024-08-11T22:58:16+09:00 info: Start 1 Rounds #######
|
|
48
|
+
2024-08-11T22:58:16+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
49
|
+
2024-08-11T22:58:16+09:00 info: Step done.
|
|
50
|
+
2024-08-11T22:58:16+09:00 info: NOW-1723384696539:[state changed] READY => STARTED
|
|
51
|
+
2024-08-11T22:58:16+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
52
|
+
2024-08-11T22:58:16+09:00 info: Step done.
|
|
53
|
+
2024-08-11T22:58:16+09:00 info: NOW-1723384696539:[state changed] READY => STARTED
|
|
54
|
+
2024-08-11T22:58:16+09:00 info: NOW-1723384696539:[state changed] STOPPED => UNLOADED
|
|
55
|
+
2024-08-11T22:58:16+09:00 info: NOW-1723384696539:[state changed] STOPPED => UNLOADED
|
|
56
|
+
2024-08-11T22:58:17+09:00 info: NOW-1723384697578:[state changed] STOPPED => READY
|
|
57
|
+
2024-08-11T22:58:17+09:00 info: NOW-1723384697578:[state changed] READY => STARTED
|
|
58
|
+
2024-08-11T22:58:17+09:00 info: Start 1 Rounds #######
|
|
59
|
+
2024-08-11T22:58:17+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
60
|
+
2024-08-11T22:58:17+09:00 info: Step done.
|
|
61
|
+
2024-08-11T22:58:17+09:00 info: NOW-1723384697578:[state changed] READY => STARTED
|
|
62
|
+
2024-08-11T22:58:17+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
63
|
+
2024-08-11T22:58:17+09:00 info: Step done.
|
|
64
|
+
2024-08-11T22:58:17+09:00 info: NOW-1723384697578:[state changed] READY => STARTED
|
|
65
|
+
2024-08-11T22:58:17+09:00 info: NOW-1723384697578:[state changed] STOPPED => UNLOADED
|
|
66
|
+
2024-08-11T22:58:17+09:00 info: NOW-1723384697578:[state changed] STOPPED => UNLOADED
|