Skip to content

Commit f272993

Browse files
authored
Merge branch 'main' into v1.5685.0
2 parents ea22fe0 + 778b4aa commit f272993

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
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.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ export type CreateUserRequest = {
311311
/** Name of the database user. */
312312
name: string
313313
/** Password of the database user. */
314-
password?: string
314+
password: string
315315
}
316316

317317
export type DeleteInstanceRequest = {

0 commit comments

Comments
 (0)