@mp-consulting/homebridge-daikin-cloud 1.3.21 → 1.3.24
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 +7 -0
- package/dist/src/accessories/base-accessory.d.ts.map +1 -1
- package/dist/src/accessories/base-accessory.js +7 -2
- package/dist/src/accessories/base-accessory.js.map +1 -1
- package/dist/src/api/daikin-device.d.ts +7 -0
- package/dist/src/api/daikin-device.d.ts.map +1 -1
- package/dist/src/api/daikin-device.js +27 -1
- package/dist/src/api/daikin-device.js.map +1 -1
- package/dist/src/api/daikin-schemas.d.ts +71 -59
- package/dist/src/api/daikin-schemas.d.ts.map +1 -1
- package/dist/src/api/daikin-schemas.js +51 -32
- package/dist/src/api/daikin-schemas.js.map +1 -1
- package/dist/src/config/config-manager.d.ts +2 -0
- package/dist/src/config/config-manager.d.ts.map +1 -1
- package/dist/src/config/config-manager.js +1 -0
- package/dist/src/config/config-manager.js.map +1 -1
- package/dist/src/device/capability-detector.d.ts +1 -0
- package/dist/src/device/capability-detector.d.ts.map +1 -1
- package/dist/src/device/capability-detector.js +11 -0
- package/dist/src/device/capability-detector.js.map +1 -1
- package/dist/src/device/capability-docs.d.ts.map +1 -1
- package/dist/src/device/capability-docs.js +3 -0
- package/dist/src/device/capability-docs.js.map +1 -1
- package/dist/src/features/base-feature.d.ts +7 -0
- package/dist/src/features/base-feature.d.ts.map +1 -1
- package/dist/src/features/base-feature.js +17 -0
- package/dist/src/features/base-feature.js.map +1 -1
- package/dist/src/features/feature-manager.d.ts +6 -0
- package/dist/src/features/feature-manager.d.ts.map +1 -1
- package/dist/src/features/feature-manager.js +11 -0
- package/dist/src/features/feature-manager.js.map +1 -1
- package/dist/src/features/modes/auto-fan-mode.feature.d.ts +27 -0
- package/dist/src/features/modes/auto-fan-mode.feature.d.ts.map +1 -0
- package/dist/src/features/modes/auto-fan-mode.feature.js +62 -0
- package/dist/src/features/modes/auto-fan-mode.feature.js.map +1 -0
- package/dist/src/features/modes/econo-mode.feature.d.ts.map +1 -1
- package/dist/src/features/modes/econo-mode.feature.js +5 -2
- package/dist/src/features/modes/econo-mode.feature.js.map +1 -1
- package/dist/src/features/modes/index.d.ts +1 -0
- package/dist/src/features/modes/index.d.ts.map +1 -1
- package/dist/src/features/modes/index.js +1 -0
- package/dist/src/features/modes/index.js.map +1 -1
- package/dist/src/features/modes/outdoor-silent-mode.feature.d.ts.map +1 -1
- package/dist/src/features/modes/outdoor-silent-mode.feature.js +5 -2
- package/dist/src/features/modes/outdoor-silent-mode.feature.js.map +1 -1
- package/dist/src/features/modes/powerful-mode.feature.d.ts.map +1 -1
- package/dist/src/features/modes/powerful-mode.feature.js +5 -2
- package/dist/src/features/modes/powerful-mode.feature.js.map +1 -1
- package/dist/src/features/modes/streamer-mode.feature.d.ts.map +1 -1
- package/dist/src/features/modes/streamer-mode.feature.js +5 -2
- package/dist/src/features/modes/streamer-mode.feature.js.map +1 -1
- package/dist/src/platform.d.ts.map +1 -1
- package/dist/src/platform.js +7 -6
- package/dist/src/platform.js.map +1 -1
- package/dist/src/services/climate-control.service.d.ts +13 -0
- package/dist/src/services/climate-control.service.d.ts.map +1 -1
- package/dist/src/services/climate-control.service.js +134 -23
- package/dist/src/services/climate-control.service.js.map +1 -1
- package/dist/src/services/hot-water-tank.service.d.ts.map +1 -1
- package/dist/src/services/hot-water-tank.service.js +3 -2
- package/dist/src/services/hot-water-tank.service.js.map +1 -1
- package/dist/src/types/device-capabilities.d.ts +1 -0
- package/dist/src/types/device-capabilities.d.ts.map +1 -1
- package/dist/src/utils/update-mapper.d.ts.map +1 -1
- package/dist/src/utils/update-mapper.js +4 -1
- package/dist/src/utils/update-mapper.js.map +1 -1
- package/homebridge-ui/public/index.html +9 -0
- package/homebridge-ui/public/script.js +1 -1
- package/package.json +10 -8
|
@@ -158,6 +158,15 @@
|
|
|
158
158
|
<input class="form-check-input" type="checkbox" role="switch" id="showIndoorSilentMode">
|
|
159
159
|
</div>
|
|
160
160
|
</div>
|
|
161
|
+
<div class="list-group-item d-flex justify-content-between align-items-center">
|
|
162
|
+
<div>
|
|
163
|
+
<div class="fw-medium">Auto Fan Mode</div>
|
|
164
|
+
<small class="text-muted">Automatic fan speed (switch)</small>
|
|
165
|
+
</div>
|
|
166
|
+
<div class="form-check form-switch mb-0">
|
|
167
|
+
<input class="form-check-input" type="checkbox" role="switch" id="showAutoFanMode">
|
|
168
|
+
</div>
|
|
169
|
+
</div>
|
|
161
170
|
<div class="list-group-item d-flex justify-content-between align-items-center">
|
|
162
171
|
<div>
|
|
163
172
|
<div class="fw-medium">Dry Mode</div>
|
|
@@ -574,7 +574,7 @@ const Settings = {
|
|
|
574
574
|
|
|
575
575
|
FEATURE_KEYS: [
|
|
576
576
|
'showPowerfulMode', 'showEconoMode', 'showStreamerMode',
|
|
577
|
-
'showOutdoorSilentMode', 'showIndoorSilentMode', 'showDryMode', 'showFanOnlyMode',
|
|
577
|
+
'showOutdoorSilentMode', 'showIndoorSilentMode', 'showAutoFanMode', 'showDryMode', 'showFanOnlyMode',
|
|
578
578
|
],
|
|
579
579
|
|
|
580
580
|
async load() {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"displayName": "Daikin Cloud",
|
|
3
3
|
"platformname": "daikincloud",
|
|
4
4
|
"name": "@mp-consulting/homebridge-daikin-cloud",
|
|
5
|
-
"version": "1.3.
|
|
5
|
+
"version": "1.3.24",
|
|
6
6
|
"description": "Integrate with the Daikin Cloud to control your Daikin air conditioning via the cloud",
|
|
7
7
|
"license": "(Apache-2.0 AND MIT)",
|
|
8
8
|
"repository": {
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"test:watch": "vitest",
|
|
25
25
|
"test:coverage": "vitest run --coverage",
|
|
26
26
|
"lint": "eslint . --max-warnings=0",
|
|
27
|
+
"schema:check": "tsx scripts/check-schema-drift.ts",
|
|
27
28
|
"watch": "npm run build && npm link && nodemon",
|
|
28
29
|
"copy:ui-kit": "mkdir -p homebridge-ui/public/lib && cp node_modules/@mp-consulting/homebridge-ui-kit/dist/kit.css homebridge-ui/public/lib/ && cp node_modules/@mp-consulting/homebridge-ui-kit/dist/kit.js homebridge-ui/public/lib/",
|
|
29
30
|
"build": "npm run copy:ui-kit && rimraf ./dist && tsc",
|
|
@@ -37,7 +38,7 @@
|
|
|
37
38
|
"dependencies": {
|
|
38
39
|
"@homebridge/plugin-ui-utils": "^2.2.3",
|
|
39
40
|
"class-validator": "^0.15.1",
|
|
40
|
-
"ws": "^8.
|
|
41
|
+
"ws": "^8.20.0",
|
|
41
42
|
"zod": "^4.3.6"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
@@ -45,16 +46,17 @@
|
|
|
45
46
|
"@mp-consulting/homebridge-ui-kit": "^1.0.0",
|
|
46
47
|
"@types/node": "^25.6.0",
|
|
47
48
|
"@types/ws": "^8.18.1",
|
|
48
|
-
"@vitest/coverage-v8": "^4.
|
|
49
|
+
"@vitest/coverage-v8": "^4.1.5",
|
|
49
50
|
"eslint": "^10.2.1",
|
|
50
51
|
"hap-nodejs": "^1.1.0",
|
|
51
52
|
"homebridge": "^2.0.0-beta.55",
|
|
52
|
-
"homebridge-config-ui-x": "^5.
|
|
53
|
-
"nodemon": "^3.1.
|
|
54
|
-
"rimraf": "^6.1.
|
|
53
|
+
"homebridge-config-ui-x": "^5.22.0",
|
|
54
|
+
"nodemon": "^3.1.14",
|
|
55
|
+
"rimraf": "^6.1.3",
|
|
56
|
+
"tsx": "^4.22.3",
|
|
55
57
|
"typescript": "^6.0.3",
|
|
56
|
-
"typescript-eslint": "^8.
|
|
57
|
-
"vitest": "^4.
|
|
58
|
+
"typescript-eslint": "^8.59.1",
|
|
59
|
+
"vitest": "^4.1.5"
|
|
58
60
|
},
|
|
59
61
|
"funding": {
|
|
60
62
|
"type": "paypal",
|