Skip to content

Commit db52033

Browse files
feat(apple-silicon): add VNC port suppport (#1542)
Co-authored-by: Laure-di <[email protected]>
1 parent 5a1a365 commit db52033

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/clients/src/api/applesilicon/v1alpha1/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ export const unmarshalServer = (data: unknown): Server => {
153153
sudoPassword: data.sudo_password,
154154
type: data.type,
155155
updatedAt: unmarshalDate(data.updated_at),
156+
vncPort: data.vnc_port,
156157
vncUrl: data.vnc_url,
157158
zone: data.zone,
158159
} as Server

packages/clients/src/api/applesilicon/v1alpha1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ export interface Server {
107107
sshUsername: string
108108
/** Admin password required to execute commands. */
109109
sudoPassword: string
110+
/** VNC port to use for remote desktop connection. */
111+
vncPort: number
110112
/**
111113
* Initially installed OS, this does not necessarily reflect the current OS
112114
* version.

0 commit comments

Comments
 (0)