diff --git a/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts b/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts index f763d6a6c..948b561f5 100644 --- a/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts +++ b/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts @@ -72,6 +72,7 @@ export const unmarshalHosting = (data: unknown): Hosting => { offerEndOfLife: data.offer_end_of_life, offerId: data.offer_id, offerName: data.offer_name, + oneTimePassword: data.one_time_password, options: unmarshalArrayOfObject(data.options, unmarshalHostingOption), organizationId: data.organization_id, platformGroup: data.platform_group, diff --git a/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts b/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts index db0401d96..ddafb825d 100644 --- a/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts +++ b/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts @@ -159,6 +159,11 @@ export interface Hosting { ipv6: string /** Whether the hosting is protected or not. */ protected: boolean + /** + * One-time-password used for the first login or reset password, empty after + * first use. + */ + oneTimePassword: string /** Region where the Web Hosting plan is hosted. */ region: Region }