mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2025-01-22 21:41:26 +01:00
Add friendly_name to device info api (#362)
This commit is contained in:
parent
1e4678eaf2
commit
acf594d4c7
@ -206,6 +206,8 @@ message DeviceInfoResponse {
|
||||
uint32 bluetooth_proxy_version = 11;
|
||||
|
||||
string manufacturer = 12;
|
||||
|
||||
string friendly_name = 13;
|
||||
}
|
||||
|
||||
message ListEntitiesRequest {
|
||||
|
File diff suppressed because one or more lines are too long
@ -107,6 +107,7 @@ class APIVersion(APIModelBase):
|
||||
class DeviceInfo(APIModelBase):
|
||||
uses_password: bool = False
|
||||
name: str = ""
|
||||
friendly_name: str = ""
|
||||
mac_address: str = ""
|
||||
compilation_time: str = ""
|
||||
model: str = ""
|
||||
|
Loading…
Reference in New Issue
Block a user