@operato/scene-integration 10.0.0-beta.65 → 10.0.0-beta.68
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/dist/connection-control.d.ts +2 -0
- package/dist/connection-state-subscription.d.ts +4 -0
- package/dist/data-subscription.d.ts +4 -0
- package/dist/scenario-control.d.ts +4 -0
- package/dist/scenario-instance-subscription.d.ts +4 -0
- package/dist/scenario-queue-subscription.d.ts +4 -0
- package/dist/scenario-run.d.ts +4 -0
- package/dist/scenario-start.d.ts +4 -0
- package/dist/scenario-stop.d.ts +4 -0
- package/package.json +3 -8
|
@@ -40,6 +40,8 @@ declare const ConnectionControl_base: (new (...args: any[]) => {
|
|
|
40
40
|
added(parent: any): void;
|
|
41
41
|
removed(parent: any): void;
|
|
42
42
|
ready(): Promise<void>;
|
|
43
|
+
_readyInvoked: boolean;
|
|
44
|
+
invokeReady(): void | Promise<void>;
|
|
43
45
|
touch(): void;
|
|
44
46
|
clearCache(...attrs: any[]): void;
|
|
45
47
|
removeSelf(completely: any): void;
|
|
@@ -23,6 +23,8 @@ declare const ConnectionStateSubscription_base: (new (...args: any[]) => {
|
|
|
23
23
|
added(parent: any): void;
|
|
24
24
|
removed(parent: any): void;
|
|
25
25
|
ready(): Promise<void>;
|
|
26
|
+
_readyInvoked: boolean;
|
|
27
|
+
invokeReady(): void | Promise<void>;
|
|
26
28
|
touch(): void;
|
|
27
29
|
clearCache(...attrs: any[]): void;
|
|
28
30
|
removeSelf(completely: any): void;
|
|
@@ -271,6 +273,8 @@ declare const ConnectionStateSubscription_base: (new (...args: any[]) => {
|
|
|
271
273
|
added(parent: any): void;
|
|
272
274
|
removed(parent: any): void;
|
|
273
275
|
ready(): Promise<void>;
|
|
276
|
+
_readyInvoked: boolean;
|
|
277
|
+
invokeReady(): void | Promise<void>;
|
|
274
278
|
touch(): void;
|
|
275
279
|
clearCache(...attrs: any[]): void;
|
|
276
280
|
removeSelf(completely: any): void;
|
|
@@ -23,6 +23,8 @@ declare const DataSubscription_base: (new (...args: any[]) => {
|
|
|
23
23
|
added(parent: any): void;
|
|
24
24
|
removed(parent: any): void;
|
|
25
25
|
ready(): Promise<void>;
|
|
26
|
+
_readyInvoked: boolean;
|
|
27
|
+
invokeReady(): void | Promise<void>;
|
|
26
28
|
touch(): void;
|
|
27
29
|
clearCache(...attrs: any[]): void;
|
|
28
30
|
removeSelf(completely: any): void;
|
|
@@ -271,6 +273,8 @@ declare const DataSubscription_base: (new (...args: any[]) => {
|
|
|
271
273
|
added(parent: any): void;
|
|
272
274
|
removed(parent: any): void;
|
|
273
275
|
ready(): Promise<void>;
|
|
276
|
+
_readyInvoked: boolean;
|
|
277
|
+
invokeReady(): void | Promise<void>;
|
|
274
278
|
touch(): void;
|
|
275
279
|
clearCache(...attrs: any[]): void;
|
|
276
280
|
removeSelf(completely: any): void;
|
|
@@ -23,6 +23,8 @@ declare const ScenarioControl_base: (new (...args: any[]) => {
|
|
|
23
23
|
added(parent: any): void;
|
|
24
24
|
removed(parent: any): void;
|
|
25
25
|
ready(): Promise<void>;
|
|
26
|
+
_readyInvoked: boolean;
|
|
27
|
+
invokeReady(): void | Promise<void>;
|
|
26
28
|
touch(): void;
|
|
27
29
|
clearCache(...attrs: any[]): void;
|
|
28
30
|
removeSelf(completely: any): void;
|
|
@@ -271,6 +273,8 @@ declare const ScenarioControl_base: (new (...args: any[]) => {
|
|
|
271
273
|
added(parent: any): void;
|
|
272
274
|
removed(parent: any): void;
|
|
273
275
|
ready(): Promise<void>;
|
|
276
|
+
_readyInvoked: boolean;
|
|
277
|
+
invokeReady(): void | Promise<void>;
|
|
274
278
|
touch(): void;
|
|
275
279
|
clearCache(...attrs: any[]): void;
|
|
276
280
|
removeSelf(completely: any): void;
|
|
@@ -23,6 +23,8 @@ declare const ScenarioInstanceSubscription_base: (new (...args: any[]) => {
|
|
|
23
23
|
added(parent: any): void;
|
|
24
24
|
removed(parent: any): void;
|
|
25
25
|
ready(): Promise<void>;
|
|
26
|
+
_readyInvoked: boolean;
|
|
27
|
+
invokeReady(): void | Promise<void>;
|
|
26
28
|
touch(): void;
|
|
27
29
|
clearCache(...attrs: any[]): void;
|
|
28
30
|
removeSelf(completely: any): void;
|
|
@@ -271,6 +273,8 @@ declare const ScenarioInstanceSubscription_base: (new (...args: any[]) => {
|
|
|
271
273
|
added(parent: any): void;
|
|
272
274
|
removed(parent: any): void;
|
|
273
275
|
ready(): Promise<void>;
|
|
276
|
+
_readyInvoked: boolean;
|
|
277
|
+
invokeReady(): void | Promise<void>;
|
|
274
278
|
touch(): void;
|
|
275
279
|
clearCache(...attrs: any[]): void;
|
|
276
280
|
removeSelf(completely: any): void;
|
|
@@ -23,6 +23,8 @@ declare const ScenarioQueueSubscription_base: (new (...args: any[]) => {
|
|
|
23
23
|
added(parent: any): void;
|
|
24
24
|
removed(parent: any): void;
|
|
25
25
|
ready(): Promise<void>;
|
|
26
|
+
_readyInvoked: boolean;
|
|
27
|
+
invokeReady(): void | Promise<void>;
|
|
26
28
|
touch(): void;
|
|
27
29
|
clearCache(...attrs: any[]): void;
|
|
28
30
|
removeSelf(completely: any): void;
|
|
@@ -271,6 +273,8 @@ declare const ScenarioQueueSubscription_base: (new (...args: any[]) => {
|
|
|
271
273
|
added(parent: any): void;
|
|
272
274
|
removed(parent: any): void;
|
|
273
275
|
ready(): Promise<void>;
|
|
276
|
+
_readyInvoked: boolean;
|
|
277
|
+
invokeReady(): void | Promise<void>;
|
|
274
278
|
touch(): void;
|
|
275
279
|
clearCache(...attrs: any[]): void;
|
|
276
280
|
removeSelf(completely: any): void;
|
package/dist/scenario-run.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ declare const ScenarioRun_base: (new (...args: any[]) => {
|
|
|
23
23
|
added(parent: any): void;
|
|
24
24
|
removed(parent: any): void;
|
|
25
25
|
ready(): Promise<void>;
|
|
26
|
+
_readyInvoked: boolean;
|
|
27
|
+
invokeReady(): void | Promise<void>;
|
|
26
28
|
touch(): void;
|
|
27
29
|
clearCache(...attrs: any[]): void;
|
|
28
30
|
removeSelf(completely: any): void;
|
|
@@ -271,6 +273,8 @@ declare const ScenarioRun_base: (new (...args: any[]) => {
|
|
|
271
273
|
added(parent: any): void;
|
|
272
274
|
removed(parent: any): void;
|
|
273
275
|
ready(): Promise<void>;
|
|
276
|
+
_readyInvoked: boolean;
|
|
277
|
+
invokeReady(): void | Promise<void>;
|
|
274
278
|
touch(): void;
|
|
275
279
|
clearCache(...attrs: any[]): void;
|
|
276
280
|
removeSelf(completely: any): void;
|
package/dist/scenario-start.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ declare const ScenarioStart_base: (new (...args: any[]) => {
|
|
|
23
23
|
added(parent: any): void;
|
|
24
24
|
removed(parent: any): void;
|
|
25
25
|
ready(): Promise<void>;
|
|
26
|
+
_readyInvoked: boolean;
|
|
27
|
+
invokeReady(): void | Promise<void>;
|
|
26
28
|
touch(): void;
|
|
27
29
|
clearCache(...attrs: any[]): void;
|
|
28
30
|
removeSelf(completely: any): void;
|
|
@@ -271,6 +273,8 @@ declare const ScenarioStart_base: (new (...args: any[]) => {
|
|
|
271
273
|
added(parent: any): void;
|
|
272
274
|
removed(parent: any): void;
|
|
273
275
|
ready(): Promise<void>;
|
|
276
|
+
_readyInvoked: boolean;
|
|
277
|
+
invokeReady(): void | Promise<void>;
|
|
274
278
|
touch(): void;
|
|
275
279
|
clearCache(...attrs: any[]): void;
|
|
276
280
|
removeSelf(completely: any): void;
|
package/dist/scenario-stop.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ declare const ScenarioStop_base: (new (...args: any[]) => {
|
|
|
23
23
|
added(parent: any): void;
|
|
24
24
|
removed(parent: any): void;
|
|
25
25
|
ready(): Promise<void>;
|
|
26
|
+
_readyInvoked: boolean;
|
|
27
|
+
invokeReady(): void | Promise<void>;
|
|
26
28
|
touch(): void;
|
|
27
29
|
clearCache(...attrs: any[]): void;
|
|
28
30
|
removeSelf(completely: any): void;
|
|
@@ -271,6 +273,8 @@ declare const ScenarioStop_base: (new (...args: any[]) => {
|
|
|
271
273
|
added(parent: any): void;
|
|
272
274
|
removed(parent: any): void;
|
|
273
275
|
ready(): Promise<void>;
|
|
276
|
+
_readyInvoked: boolean;
|
|
277
|
+
invokeReady(): void | Promise<void>;
|
|
274
278
|
touch(): void;
|
|
275
279
|
clearCache(...attrs: any[]): void;
|
|
276
280
|
removeSelf(completely: any): void;
|
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": "10.0.0-beta.
|
|
4
|
+
"version": "10.0.0-beta.68",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "heartyoh",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -18,14 +18,11 @@
|
|
|
18
18
|
"directory": "packages/integration"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
-
"serve": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"things-factory-dev\"",
|
|
22
|
-
"serve:dev": "npm run serve",
|
|
23
21
|
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
|
|
24
22
|
"build": "tsc",
|
|
25
23
|
"prepublishOnly": "tsc",
|
|
26
24
|
"lint": "eslint src/ && prettier \"src/**/*.ts\" --check",
|
|
27
|
-
"format": "eslint src/ --fix && prettier \"src/**/*.ts\" --write"
|
|
28
|
-
"migration": "things-factory-migration"
|
|
25
|
+
"format": "eslint src/ --fix && prettier \"src/**/*.ts\" --write"
|
|
29
26
|
},
|
|
30
27
|
"dependencies": {
|
|
31
28
|
"@hatiolab/things-scene": "^10.0.0-beta.1",
|
|
@@ -34,8 +31,6 @@
|
|
|
34
31
|
},
|
|
35
32
|
"devDependencies": {
|
|
36
33
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
37
|
-
"@things-factory/builder": "^10.0.0-zeta.1",
|
|
38
|
-
"@things-factory/operato-board": "^10.0.0-zeta.1",
|
|
39
34
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
40
35
|
"@typescript-eslint/parser": "^8.0.0",
|
|
41
36
|
"@web/dev-server": "^0.1.28",
|
|
@@ -60,5 +55,5 @@
|
|
|
60
55
|
"prettier --write"
|
|
61
56
|
]
|
|
62
57
|
},
|
|
63
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "fce8d69d7bb8af85cfb2e2507a8eee14130d36d7"
|
|
64
59
|
}
|