homebridge-smartthings-oauth 1.0.4 → 1.0.6
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/CHANGELOG.md +10 -4
- package/README.md +0 -23
- package/config.schema.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
4
|
+
## [Released]
|
|
6
5
|
|
|
7
|
-
## [
|
|
6
|
+
## [1.0.6]
|
|
7
|
+
### Changed
|
|
8
|
+
- Updated minimum required Node.js version to v20.0.0. Adjusted `engines` field in `package.json` accordingly.
|
|
9
|
+
- Tested compatibility with Node.js v20.
|
|
10
|
+
|
|
11
|
+
## [1.0.5]
|
|
12
|
+
### Changed
|
|
13
|
+
- Corrected and updated CHANGELOG.md details for version 1.0.4.
|
|
8
14
|
|
|
9
|
-
## [1.0.4]
|
|
15
|
+
## [1.0.4]
|
|
10
16
|
### Added
|
|
11
17
|
- Support for selecting "Speed and Windfree" under "Optional Mode For Air Conditioners" in the configuration. This option exposes separate HomeKit switches for the Speed and WindFree modes.
|
|
12
18
|
- Added descriptive text and a link to setup instructions ([README](https://github.com/aziz66/homebridge-smartthings?tab=readme-ov-file#instructions)) for the `client_id` and `client_secret` fields in the plugin configuration UI (`config.schema.json`).
|
package/README.md
CHANGED
|
@@ -112,27 +112,4 @@ After installing the plugin, you can configure the plugin from homebridge ui, yo
|
|
|
112
112
|
### 5. Authorize the plugin
|
|
113
113
|
Once you have configured the plugin, you can authorize the plugin by clicking the authorize link found in the plugin log, after authorization proceed to restart homebridge.
|
|
114
114
|
|
|
115
|
-
# Changelog
|
|
116
|
-
All notable changes to this project will be documented in this file.
|
|
117
|
-
|
|
118
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
119
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
120
|
-
|
|
121
|
-
## [Unreleased]
|
|
122
|
-
|
|
123
|
-
## [1.0.4]
|
|
124
|
-
### Added
|
|
125
|
-
- Support for selecting "Speed and Windfree" in config to expose separate switches.
|
|
126
|
-
- Descriptions with links to setup instructions for `client_id` and `client_secret` in `config.schema.json`.
|
|
127
|
-
|
|
128
|
-
### Changed
|
|
129
|
-
- Optional mode handling refactored in `AirConditionerService` to support multiple switches from a single config entry.
|
|
130
|
-
- Hidden `AccessToken` and `WebhookToken` from the Homebridge config UI (`config.schema.json`).
|
|
131
|
-
|
|
132
|
-
### Fixed
|
|
133
|
-
- Build error related to potentially undefined `this.optionalMode` when setting up a single optional mode switch (TS2345).
|
|
134
|
-
|
|
135
|
-
## [1.0.3]
|
|
136
|
-
### Added
|
|
137
|
-
- Initial feature X.
|
|
138
115
|
|
package/config.schema.json
CHANGED
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"title": "Client ID",
|
|
22
22
|
"type": "string",
|
|
23
23
|
"required": true,
|
|
24
|
-
"description": "OAuth2 Client ID from SmartThings. Obtained using the SmartThings CLI 'apps:create' command. See [Setup Instructions](https://github.com/aziz66/homebridge-smartthings?tab=readme-ov-file#
|
|
24
|
+
"description": "OAuth2 Client ID from SmartThings. Obtained using the SmartThings CLI 'apps:create' command. See [Setup Instructions](https://github.com/aziz66/homebridge-smartthings?tab=readme-ov-file#getting-started) for details."
|
|
25
25
|
},
|
|
26
26
|
"client_secret": {
|
|
27
27
|
"title": "Client Secret",
|
|
28
28
|
"type": "string",
|
|
29
29
|
"required": true,
|
|
30
30
|
"format": "password",
|
|
31
|
-
"description": "OAuth2 Client Secret from SmartThings. Obtained using the SmartThings CLI 'apps:create' command. Save this value securely! See [Setup Instructions](https://github.com/aziz66/homebridge-smartthings?tab=readme-ov-file#
|
|
31
|
+
"description": "OAuth2 Client Secret from SmartThings. Obtained using the SmartThings CLI 'apps:create' command. Save this value securely! See [Setup Instructions](https://github.com/aziz66/homebridge-smartthings?tab=readme-ov-file#getting-started) for details."
|
|
32
32
|
},
|
|
33
33
|
"server_url": {
|
|
34
34
|
"title": "Server URL",
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"private": false,
|
|
3
3
|
"displayName": "Homebridge Smartthings oAuth Plugin",
|
|
4
4
|
"name": "homebridge-smartthings-oauth",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.6",
|
|
6
6
|
"description": "Connects SmartThings devices to Homebridge. Automatically discovers devices.",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"repository": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"url": "https://github.com/aziz66/homebridge-smartthings/issues"
|
|
14
14
|
},
|
|
15
15
|
"engines": {
|
|
16
|
-
"node": ">=
|
|
16
|
+
"node": ">=20.0.0",
|
|
17
17
|
"homebridge": ">=1.3.5"
|
|
18
18
|
},
|
|
19
19
|
"main": "dist/index.js",
|