yoto-nodejs-client 0.0.3 → 0.0.4
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/README.md +1 -1
- package/bin/device-tui.js +0 -0
- package/lib/pkg.d.cts +1 -2
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -1144,7 +1144,7 @@ yoto-devices --device-id abc123 --mqtt --mqtt-timeout 10
|
|
|
1144
1144
|
# Use YotoDeviceModel to monitor device (HTTP + MQTT)
|
|
1145
1145
|
yoto-device-model --device-id abc123
|
|
1146
1146
|
|
|
1147
|
-
# Interactive TUI for device control (Prototype/WIP)
|
|
1147
|
+
# Interactive TUI for device control (Prototype/WIP/Unpublished)
|
|
1148
1148
|
yoto-device-tui --device-id abc123
|
|
1149
1149
|
```
|
|
1150
1150
|
|
package/bin/device-tui.js
CHANGED
|
File without changes
|
package/lib/pkg.d.cts
CHANGED
|
@@ -7,12 +7,12 @@ export const pkg: {
|
|
|
7
7
|
url: string;
|
|
8
8
|
};
|
|
9
9
|
dependencies: {
|
|
10
|
-
"@unblessed/node": string;
|
|
11
10
|
"jwt-decode": string;
|
|
12
11
|
mqtt: string;
|
|
13
12
|
undici: string;
|
|
14
13
|
};
|
|
15
14
|
devDependencies: {
|
|
15
|
+
"@unblessed/node": string;
|
|
16
16
|
"@types/node": string;
|
|
17
17
|
"@voxpelli/tsconfig": string;
|
|
18
18
|
argsclopts: string;
|
|
@@ -42,7 +42,6 @@ export const pkg: {
|
|
|
42
42
|
"yoto-refresh-token": string;
|
|
43
43
|
"yoto-devices": string;
|
|
44
44
|
"yoto-device-model": string;
|
|
45
|
-
"yoto-device-tui": string;
|
|
46
45
|
"yoto-content": string;
|
|
47
46
|
"yoto-groups": string;
|
|
48
47
|
"yoto-icons": string;
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yoto-nodejs-client",
|
|
3
3
|
"description": "(Unofficial) Node.js client for the Yoto API with automatic token refresh, MQTT device communication, and TypeScript support",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io)",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/bcomnes/yoto-nodejs-client/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@unblessed/node": "1.0.0-alpha.23",
|
|
11
10
|
"jwt-decode": "^4.0.0",
|
|
12
11
|
"mqtt": "^5.14.1",
|
|
13
12
|
"undici": "^7.16.0"
|
|
14
13
|
},
|
|
15
14
|
"devDependencies": {
|
|
15
|
+
"@unblessed/node": "1.0.0-alpha.23",
|
|
16
16
|
"@types/node": "^25.0.0",
|
|
17
17
|
"@voxpelli/tsconfig": "^16.1.0",
|
|
18
18
|
"argsclopts": "^1.0.5",
|
|
@@ -61,7 +61,6 @@
|
|
|
61
61
|
"yoto-refresh-token": "./bin/refresh-token.js",
|
|
62
62
|
"yoto-devices": "./bin/devices.js",
|
|
63
63
|
"yoto-device-model": "./bin/device-model.js",
|
|
64
|
-
"yoto-device-tui": "./bin/device-tui.js",
|
|
65
64
|
"yoto-content": "./bin/content.js",
|
|
66
65
|
"yoto-groups": "./bin/groups.js",
|
|
67
66
|
"yoto-icons": "./bin/icons.js"
|