| ... | ... | @@ -9,6 +9,7 @@ title: 'MQTT Topic: frontend_thing_update' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# `frontend_thing_update`
|
|
|
|
|
|
|
|
|
| ... | ... | @@ -152,12 +153,16 @@ Changes in parsers timestamp columns. |
|
|
|
|
|
|
|
## Version 7
|
|
|
|
|
|
|
|
Changes in parsers: header and comment not in read_csv anymore
|
|
|
|
Changes in parsers: header and comment not in read_csv anymore and ingest types are `null` at top level
|
|
|
|
|
|
|
|
```py
|
|
|
|
{
|
|
|
|
"version": 7
|
|
|
|
... # same as in version 6
|
|
|
|
...
|
|
|
|
"mqtt": <MQTT> | null
|
|
|
|
"external_sftp": <EXT_SFTP> | null
|
|
|
|
"external_api": <EXT_API> | null
|
|
|
|
# same as in version 6
|
|
|
|
}
|
|
|
|
|
|
|
|
<PARSER> = {
|
| ... | ... | @@ -179,6 +184,15 @@ Changes in parsers: header and comment not in read_csv anymore |
|
|
|
'column': <integer>,
|
|
|
|
'format': <string>
|
|
|
|
}
|
|
|
|
|
|
|
|
<MQTT> = {
|
|
|
|
"username": <string>
|
|
|
|
"password_hash": <string>
|
|
|
|
"password": <string> # encrypted, deprecated
|
|
|
|
"topic": <string>
|
|
|
|
"uri": <string>
|
|
|
|
"mqtt_device_type": <string> | null # moved from thing to mqtt
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
|