diff --git a/packages/clients/src/api/webhosting/v1/marshalling.gen.ts b/packages/clients/src/api/webhosting/v1/marshalling.gen.ts index 0bf7b9690..3f531f36d 100644 --- a/packages/clients/src/api/webhosting/v1/marshalling.gen.ts +++ b/packages/clients/src/api/webhosting/v1/marshalling.gen.ts @@ -377,8 +377,10 @@ const unmarshalHostingSummary = (data: unknown): HostingSummary => { return { createdAt: unmarshalDate(data.created_at), + dnsStatus: data.dns_status, domain: data.domain, id: data.id, + offerName: data.offer_name, projectId: data.project_id, protected: data.protected, region: data.region, diff --git a/packages/clients/src/api/webhosting/v1/types.gen.ts b/packages/clients/src/api/webhosting/v1/types.gen.ts index e4fab8a91..b6e6e2fae 100644 --- a/packages/clients/src/api/webhosting/v1/types.gen.ts +++ b/packages/clients/src/api/webhosting/v1/types.gen.ts @@ -243,6 +243,10 @@ export interface HostingSummary { domain: string /** Whether the hosting is protected or not. */ protected: boolean + /** DNS status of the Web Hosting plan. */ + dnsStatus: DnsRecordsStatus + /** Name of the active offer for the Web Hosting plan. */ + offerName: string /** Region where the Web Hosting plan is hosted. */ region: Region }