We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4c76066 + 2986307 commit 9e23e46Copy full SHA for 9e23e46
2 files changed
.gitignore
@@ -26,6 +26,9 @@ main*.py
26
# Test Server
27
test_server/
28
29
+# Custom Components
30
+volumes/config/.storage/custom_components/
31
+
32
# Distribution / packaging
33
.Python
34
build/
homeassistant_api/models/domains.py
@@ -577,7 +577,7 @@ class Service(BaseModel):
577
578
service_id: str
579
domain: Domain = Field(exclude=True, repr=False)
580
- name: str
+ name: Optional[str] = None
581
description: Optional[str] = None
582
fields: Optional[Dict[str, Union[ServiceField, ServiceFieldCollection]]] = None
583
target: Optional[ServiceFieldSelectorTarget] = None
0 commit comments