diff --git a/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts b/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts index 0d795332f..aa6bfe3b5 100644 --- a/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts +++ b/packages/clients/src/api/webhosting/v1alpha1/marshalling.gen.ts @@ -66,11 +66,14 @@ export const unmarshalHosting = (data: unknown): Hosting => { dnsStatus: data.dns_status, domain: data.domain, id: data.id, + ipv4: data.ipv4, + ipv6: data.ipv6, offerEndOfLife: data.offer_end_of_life, offerId: data.offer_id, offerName: data.offer_name, options: unmarshalArrayOfObject(data.options, unmarshalHostingOption), organizationId: data.organization_id, + platformGroup: data.platform_group, platformHostname: data.platform_hostname, platformNumber: data.platform_number, projectId: data.project_id, diff --git a/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts b/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts index 26d7176b6..9f1b5dacb 100644 --- a/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts +++ b/packages/clients/src/api/webhosting/v1alpha1/types.gen.ts @@ -143,6 +143,12 @@ export interface Hosting { offerEndOfLife: boolean /** Name of the control panel. */ controlPanelName: string + /** Group of the hosting's host server/platform. */ + platformGroup: string + /** IPv4 address of the hosting's host server. */ + ipv4: string + /** IPv6 address of the hosting's host server. */ + ipv6: string /** Region where the Web Hosting plan is hosted. */ region: Region }