Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ export const unmarshalServer = (data: unknown): Server => {
sudoPassword: data.sudo_password,
type: data.type,
updatedAt: unmarshalDate(data.updated_at),
vncPort: data.vnc_port,
vncUrl: data.vnc_url,
zone: data.zone,
} as Server
Expand Down
2 changes: 2 additions & 0 deletions packages/clients/src/api/applesilicon/v1alpha1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ export interface Server {
sshUsername: string
/** Admin password required to execute commands. */
sudoPassword: string
/** VNC port to use for remote desktop connection. */
vncPort: number
/**
* Initially installed OS, this does not necessarily reflect the current OS
* version.
Expand Down