@operato/scene-integration 1.2.51 → 1.2.52
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 +9 -0
- package/dist/data-subscription.d.ts +0 -7
- package/dist/data-subscription.js +0 -41
- package/dist/data-subscription.js.map +1 -1
- package/dist/index.d.ts +1 -7
- package/logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json +15 -0
- package/logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json +15 -0
- package/logs/application-2023-08-17-17.log +17 -0
- package/logs/connections-2023-08-17-17.log +76 -0
- package/logs/system/.ce832741a58883a058e9af6fb7483de16a838e2c-audit.json +15 -0
- package/logs/system/scenario-NOW-2023-08-17-17.log +88 -0
- package/package.json +2 -2
- package/schema.gql +3690 -0
- package/src/data-subscription.ts +0 -56
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
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.52](https://github.com/things-scene/operato-scene/compare/v1.2.51...v1.2.52) (2023-08-17)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :bug: Bug Fix
|
|
10
|
+
|
|
11
|
+
* the issue of duplicate data subscription occurrences ([46e1705](https://github.com/things-scene/operato-scene/commit/46e17054841de51be04da7285fbc2abeb1df1817))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [1.2.51](https://github.com/things-scene/operato-scene/compare/v1.2.50...v1.2.51) (2023-07-17)
|
|
7
16
|
|
|
8
17
|
|
|
@@ -6,14 +6,7 @@ declare const DataSubscription_base: (new (...args: any[]) => {
|
|
|
6
6
|
export default class DataSubscription extends DataSubscription_base {
|
|
7
7
|
static _image: HTMLImageElement;
|
|
8
8
|
static get image(): HTMLImageElement;
|
|
9
|
-
private subscription?;
|
|
10
|
-
dispose(): void;
|
|
11
9
|
render(context: CanvasRenderingContext2D): void;
|
|
12
|
-
ready(): void;
|
|
13
10
|
get nature(): ComponentNature;
|
|
14
|
-
get tag(): any;
|
|
15
|
-
set tag(tag: any);
|
|
16
|
-
_initDataSubscription(): void;
|
|
17
|
-
startSubscribe(): Promise<void>;
|
|
18
11
|
}
|
|
19
12
|
export {};
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import gql from 'graphql-tag';
|
|
2
1
|
import { Component, DataSource, RectPath, Shape } from '@hatiolab/things-scene';
|
|
3
|
-
import { subscribe } from '@operato/graphql';
|
|
4
2
|
const NATURE = {
|
|
5
3
|
mutable: false,
|
|
6
4
|
resizable: true,
|
|
@@ -23,53 +21,14 @@ export default class DataSubscription extends DataSource(RectPath(Shape)) {
|
|
|
23
21
|
}
|
|
24
22
|
return DataSubscription._image;
|
|
25
23
|
}
|
|
26
|
-
dispose() {
|
|
27
|
-
var _a;
|
|
28
|
-
(_a = this.subscription) === null || _a === void 0 ? void 0 : _a.unsubscribe();
|
|
29
|
-
delete this.subscription;
|
|
30
|
-
super.dispose();
|
|
31
|
-
}
|
|
32
24
|
render(context) {
|
|
33
25
|
var { left, top, width, height } = this.bounds;
|
|
34
26
|
context.beginPath();
|
|
35
27
|
this.drawImage(context, DataSubscription.image, left, top, width, height);
|
|
36
28
|
}
|
|
37
|
-
ready() {
|
|
38
|
-
this._initDataSubscription();
|
|
39
|
-
}
|
|
40
29
|
get nature() {
|
|
41
30
|
return NATURE;
|
|
42
31
|
}
|
|
43
|
-
get tag() {
|
|
44
|
-
return this.state.tag;
|
|
45
|
-
}
|
|
46
|
-
set tag(tag) {
|
|
47
|
-
this.setState('tag', tag);
|
|
48
|
-
}
|
|
49
|
-
_initDataSubscription() {
|
|
50
|
-
if (!this.app.isViewMode)
|
|
51
|
-
return;
|
|
52
|
-
this.startSubscribe();
|
|
53
|
-
}
|
|
54
|
-
async startSubscribe() {
|
|
55
|
-
var { tag } = this.state;
|
|
56
|
-
this.subscription = await subscribe({
|
|
57
|
-
query: gql `
|
|
58
|
-
subscription {
|
|
59
|
-
data(tag: "${tag}") {
|
|
60
|
-
tag
|
|
61
|
-
data
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
`
|
|
65
|
-
}, {
|
|
66
|
-
next: async ({ data }) => {
|
|
67
|
-
if (data) {
|
|
68
|
-
this.data = data.data.data;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
});
|
|
72
|
-
}
|
|
73
32
|
}
|
|
74
33
|
Component.register('data-subscription', DataSubscription);
|
|
75
34
|
//# sourceMappingURL=data-subscription.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-subscription.js","sourceRoot":"","sources":["../src/data-subscription.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"data-subscription.js","sourceRoot":"","sources":["../src/data-subscription.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAmB,UAAU,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAA;AAEhG,MAAM,MAAM,GAAoB;IAC9B,OAAO,EAAE,KAAK;IACd,SAAS,EAAE,IAAI;IACf,SAAS,EAAE,IAAI;IACf,UAAU,EAAE;QACV;YACE,IAAI,EAAE,QAAQ;YACd,KAAK,EAAE,KAAK;YACZ,IAAI,EAAE,KAAK;SACZ;KACF;IACD,gBAAgB,EAAE,KAAK;IACvB,IAAI,EAAE,mCAAmC;CAC1C,CAAA;AAED,MAAM,CAAC,OAAO,OAAO,gBAAiB,SAAQ,UAAU,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;IAEvE,MAAM,KAAK,KAAK;QACd,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE;YAC5B,gBAAgB,CAAC,MAAM,GAAG,IAAI,KAAK,EAAE,CAAA;YACrC,gBAAgB,CAAC,MAAM,CAAC,GAAG,GAAG,IAAI,GAAG,CAAC,uCAAuC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;SACrG;QAED,OAAO,gBAAgB,CAAC,MAAM,CAAA;IAChC,CAAC;IAED,MAAM,CAAC,OAAiC;QACtC,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC,MAAM,CAAA;QAE9C,OAAO,CAAC,SAAS,EAAE,CAAA;QACnB,IAAI,CAAC,SAAS,CAAC,OAAO,EAAE,gBAAgB,CAAC,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,CAAC,CAAA;IAC3E,CAAC;IAED,IAAI,MAAM;QACR,OAAO,MAAM,CAAA;IACf,CAAC;CACF;AAED,SAAS,CAAC,QAAQ,CAAC,mBAAmB,EAAE,gBAAgB,CAAC,CAAA","sourcesContent":["import { Component, ComponentNature, DataSource, RectPath, Shape } from '@hatiolab/things-scene'\n\nconst NATURE: ComponentNature = {\n mutable: false,\n resizable: true,\n rotatable: true,\n properties: [\n {\n type: 'string',\n label: 'tag',\n name: 'tag'\n }\n ],\n 'value-property': 'tag',\n help: 'scene/component/data-subscription'\n}\n\nexport default class DataSubscription extends DataSource(RectPath(Shape)) {\n static _image: HTMLImageElement\n static get image() {\n if (!DataSubscription._image) {\n DataSubscription._image = new Image()\n DataSubscription._image.src = new URL('../icons/symbol-data-subscription.png', import.meta.url).href\n }\n\n return DataSubscription._image\n }\n\n render(context: CanvasRenderingContext2D) {\n var { left, top, width, height } = this.bounds\n\n context.beginPath()\n this.drawImage(context, DataSubscription.image, left, top, width, height)\n }\n\n get nature() {\n return NATURE\n }\n}\n\nComponent.register('data-subscription', DataSubscription)\n"]}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,4 @@
|
|
|
1
1
|
import DataSubscription from './data-subscription';
|
|
2
|
-
import ScenarioControl from './scenario-control';
|
|
3
|
-
import ScenarioRun from './scenario-run';
|
|
4
|
-
import ScenarioStop from './scenario-stop';
|
|
5
|
-
import ScenarioInstanceSubscription from './scenario-instance-subscription';
|
|
6
|
-
import ScenarioQueueSubscription from './scenario-queue-subscription';
|
|
7
|
-
import ConnectionStateSubscription from './connection-state-subscription';
|
|
8
2
|
import ConnectionControl from './connection-control';
|
|
9
|
-
declare const _default: (typeof
|
|
3
|
+
declare const _default: (typeof ConnectionControl | typeof DataSubscription)[];
|
|
10
4
|
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"keep": {
|
|
3
|
+
"days": true,
|
|
4
|
+
"amount": 2
|
|
5
|
+
},
|
|
6
|
+
"auditLog": "logs/.08636eb59927f12972f6774f5947c8507b3564c2-audit.json",
|
|
7
|
+
"files": [
|
|
8
|
+
{
|
|
9
|
+
"date": 1692260248414,
|
|
10
|
+
"name": "logs/application-2023-08-17-17.log",
|
|
11
|
+
"hash": "77ee724c066663a468daa86c28455ee608531f06bf67e9c58952b945e5db143c"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"hashType": "sha256"
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"keep": {
|
|
3
|
+
"days": true,
|
|
4
|
+
"amount": 14
|
|
5
|
+
},
|
|
6
|
+
"auditLog": "logs/.5e5d741d8b7784a2fbad65eedc0fd46946aaf6f2-audit.json",
|
|
7
|
+
"files": [
|
|
8
|
+
{
|
|
9
|
+
"date": 1692260249984,
|
|
10
|
+
"name": "logs/connections-2023-08-17-17.log",
|
|
11
|
+
"hash": "da9bd4b2ab43272ae1a9323cfdf9a145981ce71e23a3c833ddb28b74506f760e"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"hashType": "sha256"
|
|
15
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
2023-08-17T17:17:28+09:00 info: File Storage is Ready.
|
|
2
|
+
2023-08-17T17:17:30+09:00 error: oracledb module loading failed
|
|
3
|
+
2023-08-17T17:17:30+09:00 info: Default DataSource established
|
|
4
|
+
2023-08-17T17:17:49+09:00 info: File Storage is Ready.
|
|
5
|
+
2023-08-17T17:17:49+09:00 error: oracledb module loading failed
|
|
6
|
+
2023-08-17T17:17:49+09:00 info: Default DataSource established
|
|
7
|
+
2023-08-17T17:17:50+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
8
|
+
2023-08-17T17:17:50+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
9
|
+
2023-08-17T17:18:51+09:00 info: File Storage is Ready.
|
|
10
|
+
2023-08-17T17:18:52+09:00 error: oracledb module loading failed
|
|
11
|
+
2023-08-17T17:18:57+09:00 info: File Storage is Ready.
|
|
12
|
+
2023-08-17T17:18:57+09:00 error: oracledb module loading failed
|
|
13
|
+
2023-08-17T17:18:58+09:00 info: Default DataSource established
|
|
14
|
+
2023-08-17T17:18:59+09:00 info: 🚀 Server ready at http://0.0.0.0:3000/graphql
|
|
15
|
+
2023-08-17T17:18:59+09:00 info: 🚀 Subscriptions ready at ws://0.0.0.0:3000/graphql
|
|
16
|
+
2023-08-17T17:19:42+09:00 error: stream is not readable
|
|
17
|
+
2023-08-17T17:19:42+09:00 error: stream is not readable
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
2023-08-17T17:17:50+09:00 info: Initializing ConnectionManager...
|
|
2
|
+
2023-08-17T17:17:50+09:00 info: Connector 'echo-back-server' started to ready
|
|
3
|
+
2023-08-17T17:17:50+09:00 info: Connector 'echo-back' started to ready
|
|
4
|
+
2023-08-17T17:17:50+09:00 info: Connector 'http-connector' started to ready
|
|
5
|
+
2023-08-17T17:17:50+09:00 info: Connector 'graphql-connector' started to ready
|
|
6
|
+
2023-08-17T17:17:50+09:00 info: Connector 'sqlite-connector' started to ready
|
|
7
|
+
2023-08-17T17:17:50+09:00 info: Connector 'postgresql-connector' started to ready
|
|
8
|
+
2023-08-17T17:17:50+09:00 info: Connector 'mqtt-connector' started to ready
|
|
9
|
+
2023-08-17T17:17:50+09:00 info: Connector 'mssql-connector' started to ready
|
|
10
|
+
2023-08-17T17:17:50+09:00 info: Connector 'oracle-connector' started to ready
|
|
11
|
+
2023-08-17T17:17:50+09:00 info: Connector 'mysql-connector' started to ready
|
|
12
|
+
2023-08-17T17:17:50+09:00 info: Connector 'socket-server' started to ready
|
|
13
|
+
2023-08-17T17:17:50+09:00 info: Connector 'msgraph-connector' started to ready
|
|
14
|
+
2023-08-17T17:17:50+09:00 info: echo-back-servers are ready
|
|
15
|
+
2023-08-17T17:17:50+09:00 info: echo-back connections are ready
|
|
16
|
+
2023-08-17T17:17:50+09:00 info: http-connector connections are ready
|
|
17
|
+
2023-08-17T17:17:50+09:00 info: graphql-connector connections are ready
|
|
18
|
+
2023-08-17T17:17:50+09:00 info: sqlite-connector connections are ready
|
|
19
|
+
2023-08-17T17:17:50+09:00 info: postgresql-connector connections are ready
|
|
20
|
+
2023-08-17T17:17:50+09:00 info: mqtt-connector connections are ready
|
|
21
|
+
2023-08-17T17:17:50+09:00 info: mssql-connector connections are ready
|
|
22
|
+
2023-08-17T17:17:50+09:00 info: oracle-connector connections are ready
|
|
23
|
+
2023-08-17T17:17:50+09:00 info: mysql-connector connections are ready
|
|
24
|
+
2023-08-17T17:17:50+09:00 info: socket servers are ready
|
|
25
|
+
2023-08-17T17:17:50+09:00 info: msgraph-connector connections are ready
|
|
26
|
+
2023-08-17T17:17:50+09:00 info: All connector for 'echo-back-server' ready
|
|
27
|
+
2023-08-17T17:17:50+09:00 info: All connector for 'echo-back' ready
|
|
28
|
+
2023-08-17T17:17:50+09:00 info: All connector for 'http-connector' ready
|
|
29
|
+
2023-08-17T17:17:50+09:00 info: All connector for 'graphql-connector' ready
|
|
30
|
+
2023-08-17T17:17:50+09:00 info: All connector for 'sqlite-connector' ready
|
|
31
|
+
2023-08-17T17:17:50+09:00 info: All connector for 'postgresql-connector' ready
|
|
32
|
+
2023-08-17T17:17:50+09:00 info: All connector for 'mqtt-connector' ready
|
|
33
|
+
2023-08-17T17:17:50+09:00 info: All connector for 'mssql-connector' ready
|
|
34
|
+
2023-08-17T17:17:50+09:00 info: All connector for 'oracle-connector' ready
|
|
35
|
+
2023-08-17T17:17:50+09:00 info: All connector for 'mysql-connector' ready
|
|
36
|
+
2023-08-17T17:17:50+09:00 info: All connector for 'socket-server' ready
|
|
37
|
+
2023-08-17T17:17:50+09:00 info: All connector for 'msgraph-connector' ready
|
|
38
|
+
2023-08-17T17:17:50+09:00 info: ConnectionManager initialization done:
|
|
39
|
+
2023-08-17T17:18:59+09:00 info: Initializing ConnectionManager...
|
|
40
|
+
2023-08-17T17:18:59+09:00 info: Connector 'echo-back-server' started to ready
|
|
41
|
+
2023-08-17T17:18:59+09:00 info: Connector 'echo-back' started to ready
|
|
42
|
+
2023-08-17T17:18:59+09:00 info: Connector 'http-connector' started to ready
|
|
43
|
+
2023-08-17T17:18:59+09:00 info: Connector 'graphql-connector' started to ready
|
|
44
|
+
2023-08-17T17:18:59+09:00 info: Connector 'sqlite-connector' started to ready
|
|
45
|
+
2023-08-17T17:18:59+09:00 info: Connector 'postgresql-connector' started to ready
|
|
46
|
+
2023-08-17T17:18:59+09:00 info: Connector 'mqtt-connector' started to ready
|
|
47
|
+
2023-08-17T17:18:59+09:00 info: Connector 'mssql-connector' started to ready
|
|
48
|
+
2023-08-17T17:18:59+09:00 info: Connector 'oracle-connector' started to ready
|
|
49
|
+
2023-08-17T17:18:59+09:00 info: Connector 'mysql-connector' started to ready
|
|
50
|
+
2023-08-17T17:18:59+09:00 info: Connector 'socket-server' started to ready
|
|
51
|
+
2023-08-17T17:18:59+09:00 info: Connector 'msgraph-connector' started to ready
|
|
52
|
+
2023-08-17T17:18:59+09:00 info: echo-back-servers are ready
|
|
53
|
+
2023-08-17T17:18:59+09:00 info: echo-back connections are ready
|
|
54
|
+
2023-08-17T17:18:59+09:00 info: http-connector connections are ready
|
|
55
|
+
2023-08-17T17:18:59+09:00 info: graphql-connector connections are ready
|
|
56
|
+
2023-08-17T17:18:59+09:00 info: sqlite-connector connections are ready
|
|
57
|
+
2023-08-17T17:18:59+09:00 info: postgresql-connector connections are ready
|
|
58
|
+
2023-08-17T17:18:59+09:00 info: mqtt-connector connections are ready
|
|
59
|
+
2023-08-17T17:18:59+09:00 info: mssql-connector connections are ready
|
|
60
|
+
2023-08-17T17:18:59+09:00 info: oracle-connector connections are ready
|
|
61
|
+
2023-08-17T17:18:59+09:00 info: mysql-connector connections are ready
|
|
62
|
+
2023-08-17T17:18:59+09:00 info: socket servers are ready
|
|
63
|
+
2023-08-17T17:18:59+09:00 info: msgraph-connector connections are ready
|
|
64
|
+
2023-08-17T17:18:59+09:00 info: All connector for 'echo-back-server' ready
|
|
65
|
+
2023-08-17T17:18:59+09:00 info: All connector for 'echo-back' ready
|
|
66
|
+
2023-08-17T17:18:59+09:00 info: All connector for 'http-connector' ready
|
|
67
|
+
2023-08-17T17:18:59+09:00 info: All connector for 'graphql-connector' ready
|
|
68
|
+
2023-08-17T17:18:59+09:00 info: All connector for 'sqlite-connector' ready
|
|
69
|
+
2023-08-17T17:18:59+09:00 info: All connector for 'postgresql-connector' ready
|
|
70
|
+
2023-08-17T17:18:59+09:00 info: All connector for 'mqtt-connector' ready
|
|
71
|
+
2023-08-17T17:18:59+09:00 info: All connector for 'mssql-connector' ready
|
|
72
|
+
2023-08-17T17:18:59+09:00 info: All connector for 'oracle-connector' ready
|
|
73
|
+
2023-08-17T17:18:59+09:00 info: All connector for 'mysql-connector' ready
|
|
74
|
+
2023-08-17T17:18:59+09:00 info: All connector for 'socket-server' ready
|
|
75
|
+
2023-08-17T17:18:59+09:00 info: All connector for 'msgraph-connector' ready
|
|
76
|
+
2023-08-17T17:18:59+09:00 info: ConnectionManager initialization done:
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"keep": {
|
|
3
|
+
"days": true,
|
|
4
|
+
"amount": 14
|
|
5
|
+
},
|
|
6
|
+
"auditLog": "logs/system/.ce832741a58883a058e9af6fb7483de16a838e2c-audit.json",
|
|
7
|
+
"files": [
|
|
8
|
+
{
|
|
9
|
+
"date": 1692260612643,
|
|
10
|
+
"name": "logs/system/scenario-NOW-2023-08-17-17.log",
|
|
11
|
+
"hash": "8932d197aeac6c4cdf0499e6aea764763d172e3e1cc930c3d4eee46000ae4c7d"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"hashType": "sha256"
|
|
15
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] STOPPED => READY
|
|
2
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] READY => STARTED
|
|
3
|
+
2023-08-17T17:23:32+09:00 info: Start 1 Rounds #######
|
|
4
|
+
2023-08-17T17:23:32+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
5
|
+
2023-08-17T17:23:32+09:00 info: Step done.
|
|
6
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] READY => STARTED
|
|
7
|
+
2023-08-17T17:23:32+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
8
|
+
2023-08-17T17:23:32+09:00 info: Step done.
|
|
9
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] READY => STARTED
|
|
10
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
11
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
12
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] STOPPED => READY
|
|
13
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] READY => STARTED
|
|
14
|
+
2023-08-17T17:23:32+09:00 info: Start 1 Rounds #######
|
|
15
|
+
2023-08-17T17:23:32+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
16
|
+
2023-08-17T17:23:32+09:00 info: Step done.
|
|
17
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] READY => STARTED
|
|
18
|
+
2023-08-17T17:23:32+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
19
|
+
2023-08-17T17:23:32+09:00 info: Step done.
|
|
20
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] READY => STARTED
|
|
21
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
22
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
23
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] STOPPED => READY
|
|
24
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] READY => STARTED
|
|
25
|
+
2023-08-17T17:23:32+09:00 info: Start 1 Rounds #######
|
|
26
|
+
2023-08-17T17:23:32+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
27
|
+
2023-08-17T17:23:32+09:00 info: Step done.
|
|
28
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] READY => STARTED
|
|
29
|
+
2023-08-17T17:23:32+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
30
|
+
2023-08-17T17:23:32+09:00 info: Step done.
|
|
31
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] READY => STARTED
|
|
32
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
33
|
+
2023-08-17T17:23:32+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
34
|
+
2023-08-17T17:23:33+09:00 info: NOW:[state changed] STOPPED => READY
|
|
35
|
+
2023-08-17T17:23:33+09:00 info: NOW:[state changed] READY => STARTED
|
|
36
|
+
2023-08-17T17:23:33+09:00 info: Start 1 Rounds #######
|
|
37
|
+
2023-08-17T17:23:33+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
38
|
+
2023-08-17T17:23:33+09:00 info: Step done.
|
|
39
|
+
2023-08-17T17:23:33+09:00 info: NOW:[state changed] READY => STARTED
|
|
40
|
+
2023-08-17T17:23:33+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
41
|
+
2023-08-17T17:23:33+09:00 info: Step done.
|
|
42
|
+
2023-08-17T17:23:33+09:00 info: NOW:[state changed] READY => STARTED
|
|
43
|
+
2023-08-17T17:23:33+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
44
|
+
2023-08-17T17:23:33+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
45
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] STOPPED => READY
|
|
46
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] READY => STARTED
|
|
47
|
+
2023-08-17T17:23:37+09:00 info: Start 1 Rounds #######
|
|
48
|
+
2023-08-17T17:23:37+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
49
|
+
2023-08-17T17:23:37+09:00 info: Step done.
|
|
50
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] READY => STARTED
|
|
51
|
+
2023-08-17T17:23:37+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
52
|
+
2023-08-17T17:23:37+09:00 info: Step done.
|
|
53
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] READY => STARTED
|
|
54
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
55
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
56
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] STOPPED => READY
|
|
57
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] READY => STARTED
|
|
58
|
+
2023-08-17T17:23:37+09:00 info: Start 1 Rounds #######
|
|
59
|
+
2023-08-17T17:23:37+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
60
|
+
2023-08-17T17:23:37+09:00 info: Step done.
|
|
61
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] READY => STARTED
|
|
62
|
+
2023-08-17T17:23:37+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
63
|
+
2023-08-17T17:23:37+09:00 info: Step done.
|
|
64
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] READY => STARTED
|
|
65
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
66
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
67
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] STOPPED => READY
|
|
68
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] READY => STARTED
|
|
69
|
+
2023-08-17T17:23:37+09:00 info: Start 1 Rounds #######
|
|
70
|
+
2023-08-17T17:23:37+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
71
|
+
2023-08-17T17:23:37+09:00 info: Step done.
|
|
72
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] READY => STARTED
|
|
73
|
+
2023-08-17T17:23:37+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
74
|
+
2023-08-17T17:23:37+09:00 info: Step done.
|
|
75
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] READY => STARTED
|
|
76
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
77
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
78
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] STOPPED => READY
|
|
79
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] READY => STARTED
|
|
80
|
+
2023-08-17T17:23:37+09:00 info: Start 1 Rounds #######
|
|
81
|
+
2023-08-17T17:23:37+09:00 info: Step 'now'(b11d4b54-06be-49a7-ab0d-c14d1a71ced0) started.
|
|
82
|
+
2023-08-17T17:23:37+09:00 info: Step done.
|
|
83
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] READY => STARTED
|
|
84
|
+
2023-08-17T17:23:37+09:00 info: Step 'publish'(99842637-0563-4448-8355-74f7dc17fea5) started.
|
|
85
|
+
2023-08-17T17:23:37+09:00 info: Step done.
|
|
86
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] READY => STARTED
|
|
87
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
|
88
|
+
2023-08-17T17:23:37+09:00 info: NOW:[state changed] STOPPED => UNLOADED
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/scene-integration",
|
|
3
3
|
"description": "Things factory integration component for things-scene",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.52",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"prettier --write"
|
|
60
60
|
]
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "a105e65d4cef539f7fe6a9d1957bd9576970d568"
|
|
63
63
|
}
|