Michał Wadas
Michał Wadas
Error codes are database-dependent. Standard-compliant way to handle errors is to use SQL codes - https://en.wikipedia.org/wiki/SQLSTATE But it's "minimum" version, and eg. [Postgres have more error codes](https://www.postgresql.org/docs/current/errcodes-appendix.html).
Maybe add builtin type: ```ts // Like `Iterable`, but excludes strings type StrictIterable = intrinsic; ```
@westwood846 @antti5 You may be interested in [my fork](https://github.com/Ginden/blinkstick-node-v2) that uses `node-hid@3` by default, and comes with Typescript support.
@miadabdi You can query `EntityMetadata`.
@quiquelhappy Hard to tell, but there are workarounds. Query `EntityMetadata` to programmatically create selection.
I did some very hacky stuff to use externally managed MQTT client for devices with multiple buttons: https://github.com/Ginden/home-assistant-remote-commands
@hue8i @kratz00 Even with #322, the problem persists - creation of `Subscriber` instances always overwrites `on_connect` and `on_message` callbacks with newest version. [`message_callback_add`](https://eclipse.dev/paho/files/paho.mqtt.python/html/client.html#paho.mqtt.client.Client.message_callback_add) must be used instead of `on_message`. There...
@dshokouhi > what happens if you configure external_url under tts like the docs mention? System fails with: ``` Invalid config for [tts.google_translate]: [external_url] is an invalid option for [tts.google_translate]. Check:...
My alarm stopped working, and we still have no response on this.
It seems like a core issue is with TTS, not cast. Specifically, in `homeassistant/components/tts/__init__.py` line was ``` base = self.tts.base_url or get_url(self.tts.hass) ``` was replaced with: ``` base = get_url(self.tts.hass)...