1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-15 07:36:16 +00:00

Split Yale brand (#155686)

Co-authored-by: J. Nick Koston <nick@koston.org>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Paulus Schoutsen
2025-11-02 19:43:46 -05:00
committed by GitHub
parent 1d0eb97592
commit f54076da29
6 changed files with 30 additions and 38 deletions

View File

@@ -1,11 +1,5 @@
{ {
"domain": "yale", "domain": "yale",
"name": "Yale", "name": "Yale (non-US/Canada)",
"integrations": [ "integrations": ["yale", "yalexs_ble", "yale_smart_alarm"]
"august",
"yale_smart_alarm",
"yalexs_ble",
"yale_home",
"yale"
]
} }

View File

@@ -0,0 +1,5 @@
{
"domain": "yale_august",
"name": "Yale August (US/Canada)",
"integrations": ["august", "august_ble"]
}

View File

@@ -1,6 +1,6 @@
{ {
"domain": "yale", "domain": "yale",
"name": "Yale", "name": "Yale Home",
"codeowners": ["@bdraco"], "codeowners": ["@bdraco"],
"config_flow": true, "config_flow": true,
"dependencies": ["application_credentials", "cloud"], "dependencies": ["application_credentials", "cloud"],

View File

@@ -1 +0,0 @@
"""Virtual integration: Yale Home."""

View File

@@ -1,6 +0,0 @@
{
"domain": "yale_home",
"name": "Yale Home",
"integration_type": "virtual",
"supported_by": "yale"
}

View File

@@ -589,11 +589,6 @@
} }
} }
}, },
"august_ble": {
"name": "August Bluetooth",
"integration_type": "virtual",
"supported_by": "yalexs_ble"
},
"aurora": { "aurora": {
"integration_type": "hub", "integration_type": "hub",
"config_flow": true, "config_flow": true,
@@ -7614,19 +7609,13 @@
"iot_class": "local_polling" "iot_class": "local_polling"
}, },
"yale": { "yale": {
"name": "Yale", "name": "Yale (non-US/Canada)",
"integrations": { "integrations": {
"august": { "yale": {
"integration_type": "hub", "integration_type": "hub",
"config_flow": true, "config_flow": true,
"iot_class": "cloud_push", "iot_class": "cloud_push",
"name": "August" "name": "Yale Home"
},
"yale_smart_alarm": {
"integration_type": "hub",
"config_flow": true,
"iot_class": "cloud_polling",
"name": "Yale Smart Living"
}, },
"yalexs_ble": { "yalexs_ble": {
"integration_type": "hub", "integration_type": "hub",
@@ -7634,17 +7623,28 @@
"iot_class": "local_push", "iot_class": "local_push",
"name": "Yale Access Bluetooth" "name": "Yale Access Bluetooth"
}, },
"yale_home": { "yale_smart_alarm": {
"integration_type": "virtual", "integration_type": "hub",
"config_flow": false, "config_flow": true,
"supported_by": "yale", "iot_class": "cloud_polling",
"name": "Yale Home" "name": "Yale Smart Living"
}, }
"yale": { }
},
"yale_august": {
"name": "Yale August (US/Canada)",
"integrations": {
"august": {
"integration_type": "hub", "integration_type": "hub",
"config_flow": true, "config_flow": true,
"iot_class": "cloud_push", "iot_class": "cloud_push",
"name": "Yale" "name": "August"
},
"august_ble": {
"integration_type": "virtual",
"config_flow": false,
"supported_by": "yalexs_ble",
"name": "August Bluetooth"
} }
} }
}, },