Eran Leshem
Eran Leshem
My AC unit has a "silky_cool" capability. Supported capabilities: {..., 'silky_cool': True, ...} How can I add support for getting/setting it?
Move test for missing temperature value from appliance.py to command.py, so it is performed on the raw payload. Currently, the test is performed on the value after conversion, so it...
Saving using a record is supported by existing code. This change adds support for loading into a record, using its canonical constructor. Both standard (JDK14+) and [Android desugared (SDK34+)](https://android-developers.googleblog.com/2023/06/records-in-android-studio-flamingo.html) records...
It would be nice to read and write data from/to influxdb using java records. I have implemented such support. Are you interested in a PR?
It would be helpful to use enum values in many cases. Enums can then be converted to/from strings when writing/reading to/from DB. I have implemented such support. Should I submit...
Add support for `java.time.Instant` as a timestamp type. This is a port of https://github.com/googleapis/java-firestore/pull/1586.