Skip to content

Commit aa22929

Browse files
authored
fix(instance): switch some types of CreateImageRequest to optional (#364)
1 parent d393683 commit aa22929

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/clients/src/api/instance/v1/types.gen.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1043,7 +1043,7 @@ export type CreateImageRequest = {
10431043
/** Architecture of the image */
10441044
arch: Arch
10451045
/** Default bootscript of the image */
1046-
defaultBootscript: string
1046+
defaultBootscript?: string
10471047
/** Additional volumes of the image */
10481048
extraVolumes?: Record<string, VolumeTemplate>
10491049
/**
@@ -1063,7 +1063,7 @@ export type CreateImageRequest = {
10631063
/** The tags of the image */
10641064
tags?: Array<string>
10651065
/** True to create a public image */
1066-
public: boolean
1066+
public?: boolean
10671067
}
10681068

10691069
export type DeleteImageRequest = {

0 commit comments

Comments
 (0)