Metadata about a TinyPilot update package. This data structure reflects the response of Gatekeeper’s `/available-update` routes.
| 30 | |
| 31 | @dataclasses.dataclass |
| 32 | class UpdateInfo: |
| 33 | """Metadata about a TinyPilot update package. |
| 34 | |
| 35 | This data structure reflects the response of Gatekeeper’s |
| 36 | `/available-update` routes. |
| 37 | """ |
| 38 | version: str |
| 39 | kind: str |
| 40 | data: dict |
| 41 | |
| 42 | |
| 43 | def _is_debug(): |