Skip to content

Commit 5f09318

Browse files
authored
Include hardware integrations in the cached integrations.json (home-assistant#139001)
Include hardware integrations in the cached integrations JSON
1 parent c3bab1f commit 5f09318

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

homeassistant/generated/integrations.json

+28
Original file line numberDiff line numberDiff line change
@@ -2496,6 +2496,12 @@
24962496
"config_flow": true,
24972497
"iot_class": "cloud_polling"
24982498
},
2499+
"hardkernel": {
2500+
"name": "Hardkernel",
2501+
"integration_type": "hardware",
2502+
"config_flow": false,
2503+
"single_config_entry": true
2504+
},
24992505
"harman_kardon_avr": {
25002506
"name": "Harman Kardon AVR",
25012507
"integration_type": "hub",
@@ -2639,6 +2645,23 @@
26392645
"integration_type": "virtual",
26402646
"supported_by": "netatmo"
26412647
},
2648+
"homeassistant_green": {
2649+
"name": "Home Assistant Green",
2650+
"integration_type": "hardware",
2651+
"config_flow": false,
2652+
"single_config_entry": true
2653+
},
2654+
"homeassistant_sky_connect": {
2655+
"name": "Home Assistant Connect ZBT-1",
2656+
"integration_type": "hardware",
2657+
"config_flow": true
2658+
},
2659+
"homeassistant_yellow": {
2660+
"name": "Home Assistant Yellow",
2661+
"integration_type": "hardware",
2662+
"config_flow": false,
2663+
"single_config_entry": true
2664+
},
26422665
"homee": {
26432666
"name": "Homee",
26442667
"integration_type": "hub",
@@ -5199,6 +5222,11 @@
51995222
"raspberry_pi": {
52005223
"name": "Raspberry Pi",
52015224
"integrations": {
5225+
"raspberry_pi": {
5226+
"integration_type": "hardware",
5227+
"config_flow": false,
5228+
"name": "Raspberry Pi"
5229+
},
52025230
"rpi_camera": {
52035231
"integration_type": "hub",
52045232
"config_flow": false,

script/hassfest/config_flow.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ def _populate_brand_integrations(
9595
integration = integrations.get(domain)
9696
if not integration or integration.integration_type in (
9797
"entity",
98-
"hardware",
9998
"system",
10099
):
101100
continue
@@ -171,7 +170,7 @@ def _generate_integrations(
171170
result["integration"][domain] = metadata
172171
else: # integration
173172
integration = integrations[domain]
174-
if integration.integration_type in ("entity", "system", "hardware"):
173+
if integration.integration_type in ("entity", "system"):
175174
continue
176175

177176
if integration.translated_name:

0 commit comments

Comments
 (0)