Skip to content

Commit

Permalink
types/Device: Deprecate the non-existent vpn_address property
Browse files Browse the repository at this point in the history
Change-type: patch
  • Loading branch information
otaviojacobi committed Dec 15, 2023
1 parent 45ff692 commit 0a9d79b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/types/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,9 @@ export interface Device {
status_sort_index?: number;
supervisor_version: string;
uuid: string;
vpn_address: string | null;
// TODO: Drop when we bump to api v7
/** @deprecated */
vpn_address?: string | null;
api_heartbeat_state: 'online' | 'offline' | 'timeout' | 'unknown';
memory_usage: number | null;
memory_total: number | null;
Expand Down

0 comments on commit 0a9d79b

Please sign in to comment.