File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
packages/clients/src/api/webhosting/v1alpha1 Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ export const marshalCreateHostingRequest = (
237237) : Record < string , unknown > => ( {
238238 domain : request . domain ,
239239 email : request . email ,
240+ language : request . language ,
240241 offer_id : request . offerId ,
241242 option_ids : request . optionIds ,
242243 project_id : request . projectId ?? defaults . defaultProjectId ,
Original file line number Diff line number Diff line change 11// This file was automatically generated. DO NOT EDIT.
22// If you have any remark or suggestion do not hesitate to open an issue.
33import type { Money , Region } from '../../../bridge'
4+ import type { LanguageCode as StdLanguageCode } from '../../std/types.gen'
45
56export type DnsRecordStatus = 'unknown_status' | 'valid' | 'invalid'
67
@@ -196,6 +197,8 @@ export type CreateHostingRequest = {
196197 domain : string
197198 /** IDs of any selected additional options for the Web Hosting plan. */
198199 optionIds ?: string [ ]
200+ /** Default language for the control panel interface. */
201+ language ?: StdLanguageCode
199202}
200203
201204export type DeleteHostingRequest = {
You can’t perform that action at this time.
0 commit comments