diff --git a/packages/clients/src/api/webhosting/v1/marshalling.gen.ts b/packages/clients/src/api/webhosting/v1/marshalling.gen.ts index fedf852dc..39c41b2b8 100644 --- a/packages/clients/src/api/webhosting/v1/marshalling.gen.ts +++ b/packages/clients/src/api/webhosting/v1/marshalling.gen.ts @@ -167,6 +167,7 @@ export const unmarshalDnsRecords = (data: unknown): DnsRecords => { } return { + dnsConfig: data.dns_config, nameServers: unmarshalArrayOfObject(data.name_servers, unmarshalNameserver), records: unmarshalArrayOfObject(data.records, unmarshalDnsRecord), status: data.status, diff --git a/packages/clients/src/api/webhosting/v1/types.gen.ts b/packages/clients/src/api/webhosting/v1/types.gen.ts index e840b8b44..faf422d7c 100644 --- a/packages/clients/src/api/webhosting/v1/types.gen.ts +++ b/packages/clients/src/api/webhosting/v1/types.gen.ts @@ -615,6 +615,8 @@ export interface DnsRecords { nameServers: Nameserver[] /** Status of the records. */ status: DnsRecordsStatus + /** Records dns auto configuration settings. */ + dnsConfig: DomainDnsAction[] } export interface Domain {