Skip to content

Commit

Permalink
Add typing for update_status and last_update_status_event in the …
Browse files Browse the repository at this point in the history
…Device resource

Change-type: minor
  • Loading branch information
Andrea Rosci authored and Andrea Rosci committed Jul 15, 2024
1 parent 7a3a33e commit fa0d76e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/types/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,15 @@ export interface Device {
is_accessible_by_support_until__date: string | null;
is_connected_to_vpn: boolean;
is_locked_until__date: string;
update_status:
| 'rejected'
| 'downloading'
| 'downloaded'
| 'applying changes'
| 'aborted'
| 'done'
| null;
last_update_status_event: string | null;
is_web_accessible: boolean;
is_active: boolean;
/** This is a computed term */
Expand Down

0 comments on commit fa0d76e

Please sign in to comment.