File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
packages/clients/src/api/instance/v1 Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ const unmarshalBootscript = (data: unknown): Bootscript => {
181181 }
182182
183183 return {
184- arch : data . arch ,
184+ architecture : data . architecture ,
185185 bootcmdargs : data . bootcmdargs ,
186186 default : data . default ,
187187 dtb : data . dtb ,
@@ -1974,7 +1974,7 @@ const marshalBootscript = (
19741974 request : Bootscript ,
19751975 defaults : DefaultValues ,
19761976) : Record < string , unknown > => ( {
1977- arch : request . arch ,
1977+ architecture : request . architecture ,
19781978 bootcmdargs : request . bootcmdargs ,
19791979 default : request . default ,
19801980 dtb : request . dtb ,
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ const marshalBootscript = (
2929 request : Bootscript ,
3030 defaults : DefaultValues ,
3131) : Record < string , unknown > => ( {
32- arch : request . arch ,
32+ architecture : request . architecture ,
3333 bootcmdargs : request . bootcmdargs ,
3434 default : request . default ,
3535 dtb : request . dtb ,
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ export interface Bootscript {
164164 /** Bootscript title. */
165165 title : string
166166 /** Bootscript architecture. */
167- arch : Arch
167+ architecture : Arch
168168 /** Zone in which the bootscript is located. */
169169 zone : Zone
170170}
You can’t perform that action at this time.
0 commit comments