@bobfrankston/lxlan 0.1.21 → 0.1.23
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/device.d.ts +1 -1
- package/device.js +1 -1
- package/package.json +2 -2
package/device.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export declare class LxDevice extends DeviceBase {
|
|
|
41
41
|
* Do not call directly - use `client.addDevice(mac, ip)` instead.
|
|
42
42
|
* Devices created directly will not have a transport and will throw errors when used.
|
|
43
43
|
*
|
|
44
|
-
* @param mac - MAC address (will be normalized to lowercase,
|
|
44
|
+
* @param mac - MAC address (will be normalized to lowercase, colon-separated)
|
|
45
45
|
* @param ip - IP address (optional, can be discovered)
|
|
46
46
|
* @internal
|
|
47
47
|
*/
|
package/device.js
CHANGED
|
@@ -42,7 +42,7 @@ export class LxDevice extends DeviceBase {
|
|
|
42
42
|
* Do not call directly - use `client.addDevice(mac, ip)` instead.
|
|
43
43
|
* Devices created directly will not have a transport and will throw errors when used.
|
|
44
44
|
*
|
|
45
|
-
* @param mac - MAC address (will be normalized to lowercase,
|
|
45
|
+
* @param mac - MAC address (will be normalized to lowercase, colon-separated)
|
|
46
46
|
* @param ip - IP address (optional, can be discovered)
|
|
47
47
|
* @internal
|
|
48
48
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/lxlan",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"description": "LIFX LAN protocol library for device control via UDP",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@bobfrankston/colorlib": "^0.1.8",
|
|
35
|
-
"@bobfrankston/devdefs": "^0.1.
|
|
35
|
+
"@bobfrankston/devdefs": "^0.1.5",
|
|
36
36
|
"@bobfrankston/udp-transport": "^1.0.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|