@o-lukas/homebridge-smartthings-tv 1.4.0 → 1.4.2

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.
Files changed (2) hide show
  1. package/config.schema.json +4 -0
  2. package/package.json +11 -6
@@ -46,10 +46,12 @@
46
46
  "description": "The SmartThings device id. Check the log or go to https://account.smartthings.com/ and get the device id."
47
47
  },
48
48
  "wol": {
49
+ "title": "Wake-on-lan functionality",
49
50
  "type": "boolean",
50
51
  "description": "Enables usage of wake-on-lan functionality to turn the device on. Use only if using the SmartThings API does not work for your device."
51
52
  },
52
53
  "macAddress": {
54
+ "title": "Mac address",
53
55
  "type": "string",
54
56
  "description": "The mac address of the device to turn device on using wake-on-lan functionality.",
55
57
  "pattern": "^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})|([0-9a-fA-F]{4}\\.[0-9a-fA-F]{4}\\.[0-9a-fA-F]{4})$",
@@ -58,10 +60,12 @@
58
60
  }
59
61
  },
60
62
  "ping": {
63
+ "title": "Ping functionality",
61
64
  "type": "boolean",
62
65
  "description": "Enables usage of ping functionality to determine if device is turned on. Use only if using the SmartThings API does not work for your device."
63
66
  },
64
67
  "ipAddress": {
68
+ "title": "IP address",
65
69
  "type": "string",
66
70
  "description": "The IP address of the device (assign a static IP address to make sure it does not change) to determine the status using ping.",
67
71
  "pattern": "((^\\s*((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))\\s*$)|(^\\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:)))(%.+)?\\s*$))",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "Homebridge SmartThings TV",
3
3
  "name": "@o-lukas/homebridge-smartthings-tv",
4
- "version": "1.4.0",
4
+ "version": "1.4.2",
5
5
  "description": "This is a plugin for Homebridge. It offers some basic functions to control Samsung TVs using the SmartThings API.",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -43,16 +43,21 @@
43
43
  "@types/node": "^18.15.11",
44
44
  "@types/ping": "^0.4.1",
45
45
  "@types/wol": "^1.0.1",
46
- "@typescript-eslint/eslint-plugin": "^5.57.1",
47
- "@typescript-eslint/parser": "^5.57.1",
48
- "eslint": "^8.37.0",
46
+ "@typescript-eslint/eslint-plugin": "^5.58.0",
47
+ "@typescript-eslint/parser": "^5.58.0",
48
+ "eslint": "^8.38.0",
49
49
  "homebridge": "^1.6.0",
50
50
  "nodemon": "^2.0.22",
51
- "rimraf": "^4.4.1",
51
+ "rimraf": "^5.0.0",
52
52
  "ts-node": "^10.9.1",
53
- "typescript": "^5.0.3",
53
+ "typescript": "^5.0.4",
54
54
  "semantic-release": "^21.0.1"
55
55
  },
56
+ "overrides": {
57
+ "@homebridge/dbus-native": {
58
+ "xml2js": "~>0.5.0"
59
+ }
60
+ },
56
61
  "release": {
57
62
  "branches": [
58
63
  "main",