@operato/scene-mqtt 10.0.0-beta.31 → 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/mqtt.d.ts +6 -0
- package/package.json +4 -8
package/dist/mqtt.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ declare const Mqtt_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;
|
|
@@ -51,6 +53,7 @@ declare const Mqtt_base: (new (...args: any[]) => {
|
|
|
51
53
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
52
54
|
get model(): any;
|
|
53
55
|
get state(): import("@hatiolab/things-scene").State;
|
|
56
|
+
get refid(): any;
|
|
54
57
|
get hierarchy(): any;
|
|
55
58
|
get volatile(): never[];
|
|
56
59
|
_applyProps(target: any, props: any, options: any): any;
|
|
@@ -270,6 +273,8 @@ declare const Mqtt_base: (new (...args: any[]) => {
|
|
|
270
273
|
added(parent: any): void;
|
|
271
274
|
removed(parent: any): void;
|
|
272
275
|
ready(): Promise<void>;
|
|
276
|
+
_readyInvoked: boolean;
|
|
277
|
+
invokeReady(): void | Promise<void>;
|
|
273
278
|
touch(): void;
|
|
274
279
|
clearCache(...attrs: any[]): void;
|
|
275
280
|
removeSelf(completely: any): void;
|
|
@@ -298,6 +303,7 @@ declare const Mqtt_base: (new (...args: any[]) => {
|
|
|
298
303
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
299
304
|
get model(): any;
|
|
300
305
|
get state(): import("@hatiolab/things-scene").State;
|
|
306
|
+
get refid(): any;
|
|
301
307
|
get hierarchy(): any;
|
|
302
308
|
get volatile(): never[];
|
|
303
309
|
_applyProps(target: any, props: any, options: any): any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/scene-mqtt",
|
|
3
|
-
"version": "10.0.0-beta.
|
|
3
|
+
"version": "10.0.0-beta.68",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "MQTT integration component for things-scene",
|
|
6
6
|
"license": "MIT",
|
|
@@ -18,23 +18,19 @@
|
|
|
18
18
|
"directory": "packages/mqtt"
|
|
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",
|
|
29
|
+
"mqtt": "^4.3.7",
|
|
32
30
|
"mqtt-browser": "^4.2.7"
|
|
33
31
|
},
|
|
34
32
|
"devDependencies": {
|
|
35
33
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
36
|
-
"@things-factory/builder": "^10.0.0-beta.1",
|
|
37
|
-
"@things-factory/operato-board": "^10.0.0-beta.1",
|
|
38
34
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
39
35
|
"@typescript-eslint/parser": "^8.0.0",
|
|
40
36
|
"@web/dev-server": "^0.1.28",
|
|
@@ -59,5 +55,5 @@
|
|
|
59
55
|
"prettier --write"
|
|
60
56
|
]
|
|
61
57
|
},
|
|
62
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "fce8d69d7bb8af85cfb2e2507a8eee14130d36d7"
|
|
63
59
|
}
|